home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -serious- / graphics / metaview / metaview.install < prev    next >
Text File  |  1999-11-29  |  91KB  |  3,826 lines

  1. ;************************************************
  2. ;$VER: MetaView Install 2.7 (10.10.1999)
  3. ;Copyright ©1996-99 Henk Jonas
  4. ;
  5. ;   English         by  Henk Jonas
  6. ;   Deutsch         by  Henk Jonas
  7. ;   Spanish         by  Dámaso D. Estévez (29.10.98)
  8. ;
  9. ;
  10. ;
  11. ;************************************************
  12.  
  13. (set @app-name "MetaView V2.7")
  14. (set @sourcedir (pathonly @icon))
  15. (set #wbversion (getversion "libs:version.library"))
  16. (set #wbversion (/ #wbversion 65536))
  17.  
  18. (if (< #wbversion 38)
  19.   (abort "\n\nAmigaDOS 2.1 or better is needed for this software.")
  20. )
  21.  
  22. ;************************************************
  23. ;
  24. ; which language should i use?
  25. ;
  26. ;************************************************
  27.  
  28. (set #language-number 0)
  29. (if (= @language "deutsch")
  30.   (set #language-number 1)
  31. )
  32. (if (= @language "español")
  33.   (set #language-number 2)
  34. )
  35. (if (= @language "polski")
  36.   (set #language-number 3)
  37. )
  38. (if (= @language "ceská")
  39.   (set #language-number 4)
  40. )
  41. (if (= @language "catalá")
  42.   (set #language-number 5)
  43. )
  44. (if (= 2 @user-level)
  45.   (
  46.     (set #language-number
  47.       (askchoice
  48.         (prompt "Please choose your favorite language for the installation")
  49.         (choices "pEnglish" "Deutsch" "Español" "Polski" "Ceská" "Catalá")
  50.         (default #language-number)
  51.         (help @askchoice-help)
  52.       )
  53.     )
  54.   )
  55. )
  56.  
  57. ;************************************************
  58. ;
  59. ; now the texts for the different languages
  60. ;
  61. ;************************************************
  62. ;
  63. ; english texts for the install script
  64. ;
  65. ;************************************************
  66. ;/**/
  67.  
  68.   (set #YES "Yes")
  69.   (set #NO  "No")
  70.   (set #text_copy "Copy")
  71.   (set #text_skip "Skip")
  72.   (set #text_update "Update")
  73.  
  74.   (set #text_present
  75.      (cat
  76.         "Henk Jonas\n present:\n\n MetaView\n\n"
  77.         "This programm shows and converts gfx-metafile,\n"
  78.         "uses the 'amigametaformat.library'\n and is SHAREWARE."
  79.      )
  80.   )
  81.   (set #text_programm_update
  82.      (cat
  83.         "I found the MetaView drawer,\n"
  84.         "leave the path in the parent directory\n"
  85.         "of the MetaView drawer for\n"
  86.         "updating an existing MetaView installation."
  87.      )
  88.   )
  89.   (set #text_new
  90.      (cat
  91.         "Please choose the destination for MetaView.\n"
  92.         "I will create a MetaView drawer there,\n"
  93.         "if it does not exist."
  94.      )
  95.   )
  96.   (set #text_drawer
  97.      (cat
  98.         "I am creating the drawer 'MetaView'."
  99.      )
  100.   )
  101.   (set #text_library
  102.      (cat
  103.         "Now I will install the 'amigametaformat.library'."
  104.      )
  105.   )
  106.   (set #help_library
  107.      (cat
  108.         "This library are needed for this programm.\n"
  109.         "It is very importent to install this!"
  110.      )
  111.   )
  112.   (set #text_driver
  113.      (cat
  114.         "Now I will install the different Outputdrivers for the 'amigametaformat.library'."
  115.      )
  116.   )
  117.   (set #help_driver
  118.      (cat
  119.         "the options:\n"
  120.         "* Strip       : the driver for all renderings, like screen, ILBM, printer etc.\n"
  121.         "* AMF         : are for output as Amiga Metafile Format.\n"
  122.         "* CGM         : are for output as Computer Graphics Metafile.\n"
  123.         "* EPS         : are for output as Encapsulated PostScript.\n"
  124.         "* GEM         : are for output as GEM Metafile.\n"
  125.         "* WordWorth   : create ARexx scripts, for use in WordWorth.\n"
  126.         "* DR2D        : are for output as DR2D (for PageStream, DrawStudio...)\n"
  127.         "* HPGL        : are for output as HPGL (for Plotters)\n"
  128.         "* AI          : are for output as AdobeIllustrator\n"
  129.         "* JMF         : are for output as JavaMetaFile (for www-publishing)\n"
  130.         "* WMF         : are for output as WindowsMetaFile\n"
  131.         "* FIG         : are for output as XFIG file\n"
  132.      )
  133.   )
  134.   (set #text_strip
  135.      (cat
  136.         "Now I will install the stripdriver for 'amigametaformat.library'."
  137.      )
  138.   )
  139.   (set #help_strip
  140.      (cat
  141.         "strip for all renderings on screen, printer and ILBM-output\n"
  142.      )
  143.   )
  144.   (set #text_file
  145.      (cat
  146.         "Now I will install the filedriver for 'amigametaformat.library'."
  147.      )
  148.   )
  149.   (set #help_file
  150.      (cat
  151.         "file for saving as Amiga Meta Format Metafile\n"
  152.      )
  153.   )
  154.   (set #text_cgm
  155.      (cat
  156.         "Now I will install the CGMdriver for 'amigametaformat.library'."
  157.      )
  158.   )
  159.   (set #help_cgm
  160.      (cat
  161.         "CGM for saving as Computer Graphics Metafile\n"
  162.      )
  163.   )
  164.   (set #text_eps
  165.      (cat
  166.         "Now I will install the EPSdriver for 'amigametaformat.library'."
  167.      )
  168.   )
  169.   (set #help_eps
  170.      (cat
  171.         "EPS for saving as Encapsulated PostScript\n"
  172.      )
  173.   )
  174.   (set #text_gem
  175.      (cat
  176.         "Now I will install the GEMdriver for 'amigametaformat.library'."
  177.      )
  178.   )
  179.   (set #help_gem
  180.      (cat
  181.         "GEM for saving as GEM Metafile\n"
  182.      )
  183.   )
  184.   (set #text_ww
  185.      (cat
  186.         "Now I will install the WordWorth-ARexx-driver for 'amigametaformat.library'."
  187.      )
  188.   )
  189.   (set #help_ww
  190.      (cat
  191.         "WordWorth-ARexx-driver for creating WordWorth-ARexx-script\n"
  192.      )
  193.   )
  194.   (set #text_dr2d
  195.      (cat
  196.         "Now I will install the DR2D-driver for 'amigametaformat.library'."
  197.      )
  198.   )
  199.   (set #help_dr2d
  200.      (cat
  201.         "DR2D-driver for creating DR2D-Output\n"
  202.      )
  203.   )
  204.   (set #text_hpgl
  205.      (cat
  206.         "Now I will install the HPGL-driver for 'amigametaformat.library'."
  207.      )
  208.   )
  209.   (set #help_hpgl
  210.      (cat
  211.         "HPGL-driver for creating HPGL-Output\n"
  212.      )
  213.   )
  214.   (set #text_ai
  215.      (cat
  216.         "Now I will install the AI-driver for 'amigametaformat.library'."
  217.      )
  218.   )
  219.   (set #help_ai
  220.      (cat
  221.         "AI-driver for creating AI-Output\n"
  222.      )
  223.   )
  224.   (set #text_jmf
  225.      (cat
  226.         "Now I will install the JMF-driver for 'amigametaformat.library'."
  227.      )
  228.   )
  229.   (set #help_jmf
  230.      (cat
  231.         "JMF-driver for creating JMF-Output\n"
  232.      )
  233.   )
  234.   (set #text_wmf
  235.      (cat
  236.         "Now I will install the WMF-driver for 'amigametaformat.library'."
  237.      )
  238.   )
  239.   (set #help_wmf
  240.      (cat
  241.         "WMF-driver for creating WMF-Output\n"
  242.      )
  243.   )
  244.   (set #text_fig
  245.      (cat
  246.         "Now I will install the FIG-driver for 'amigametaformat.library'."
  247.      )
  248.   )
  249.   (set #help_fig
  250.      (cat
  251.         "FIG-driver for creating FIG-Output\n"
  252.      )
  253.   )
  254.   (set #text_programm
  255.      (cat
  256.         "copy programm"
  257.      )
  258.   )
  259.   (set #help_programm
  260.      (cat
  261.         "Now, I will copy the programm."
  262.      )
  263.   )
  264.   (set #text_doc
  265.      (cat
  266.         "copy documentation"
  267.      )
  268.   )
  269.   (set #help_doc
  270.      (cat
  271.         "Now, I will copy the documentation.\n"
  272.         "This textfile is obsolete, use the guide instead."
  273.      )
  274.   )
  275.   (set #text_guide
  276.      (cat
  277.         "Now I will copy the guide for MetaView.\n"
  278.         "What is your favorite language?"
  279.      )
  280.   )
  281.   (set #text_english_guide
  282.      (cat
  283.         "copy English MetaView.guide"
  284.      )
  285.   )
  286.   (set #help_english_guide
  287.      (cat
  288.         "Now, I will copy the English MetaView.guide."
  289.      )
  290.   )
  291.   (set #text_german_guide
  292.      (cat
  293.         "copy German MetaView.guide"
  294.      )
  295.   )
  296.   (set #help_german_guide
  297.      (cat
  298.         "Now, I will copy the German MetaView.guide."
  299.      )
  300.   )
  301.   (set #text_spanish_guide
  302.      (cat
  303.         "copy Spanish MetaView.guide"
  304.      )
  305.   )
  306.   (set #help_spanish_guide
  307.      (cat
  308.         "Now, I will copy the Spanish MetaView.guide."
  309.      )
  310.   )
  311.   (set #text_polish_guide
  312.      (cat
  313.         "copy Polish MetaView.guide"
  314.      )
  315.   )
  316.   (set #help_polish_guide
  317.      (cat
  318.         "Now, I will copy the Polish MetaView.guide."
  319.      )
  320.   )
  321.   (set #text_czech_guide
  322.      (cat
  323.         "copy Czech MetaView.guide"
  324.      )
  325.   )
  326.   (set #help_czech_guide
  327.      (cat
  328.         "Now, I will copy the Czech MetaView.guide."
  329.      )
  330.   )
  331.     (set #text_catalan_guide
  332.        (cat
  333.           "copy Catalan MetaView.guide"
  334.        )
  335.     )
  336.     (set #help_catalan_guide
  337.        (cat
  338.           "Now, I will copy the Catalan MetaView.guide."
  339.        )
  340.     )
  341.   (set #text_readme
  342.      (cat
  343.         "copy amigametaformat.readme"
  344.      )
  345.   )
  346.   (set #help_readme
  347.      (cat
  348.         "Now, I will copy the amigametaformat.readme."
  349.      )
  350.   )
  351.   (set #text_arexx
  352.      (cat
  353.         "copy ARexx-Examples"
  354.      )
  355.   )
  356.   (set #help_arexx
  357.      (cat
  358.         "Now, I will copy some ARexx-Examples."
  359.      )
  360.   )
  361.   (set #text_ds
  362.      (cat
  363.         "Do you have DrawStudio installed,\n"
  364.         "and want to im- and export gfx\n"
  365.         "with MetaView?"
  366.      )
  367.   )
  368.   (set #help_ds
  369.      (cat
  370.         "I want to install two ARexx scripts for import and export\n"
  371.         "graphics in DrawStudio with MetaView."
  372.      )
  373.   )
  374.   (set #text_ds_path
  375.      (cat
  376.         "Please choose the DrawStudio ARexx scripts drawer."
  377.      )
  378.   )
  379.   (set #help_ds_path
  380.      (cat
  381.         "I want to install two ARexx scripts for import and export\n"
  382.         "graphics in DrawStudio with MetaView."
  383.      )
  384.   )
  385.   (set #text_ds_import
  386.      (cat
  387.         "copying DrawStudio import script"
  388.      )
  389.   )
  390.   (set #text_ds_export
  391.      (cat
  392.         "copying DrawStudio export script"
  393.      )
  394.   )
  395.   (set #text_pgs
  396.      (cat
  397.         "Do you have PageStream 3.x installed,\n"
  398.         "and want to import gfx with MetaView?"
  399.      )
  400.   )
  401.   (set #help_pgs
  402.      (cat
  403.         "I want to install one ARexx script for import\n"
  404.         "graphics in PageStream with MetaView."
  405.      )
  406.   )
  407.   (set #text_pgs_path
  408.      (cat
  409.         "Please choose the PageStream ARexx scripts drawer."
  410.      )
  411.   )
  412.   (set #help_pgs_path
  413.      (cat
  414.         "I want to install one ARexx script for import\n"
  415.         "graphics in PageStream with MetaView."
  416.      )
  417.   )
  418.   (set #text_pgs_import
  419.      (cat
  420.         "copying PageStream import script"
  421.      )
  422.   )
  423.   (set #text_ww
  424.      (cat
  425.         "Do you have WordWorth installed,\n"
  426.         "and want to import gfx with MetaView?"
  427.      )
  428.   )
  429.   (set #help_ww
  430.      (cat
  431.         "I want to install one ARexx script for import\n"
  432.         "graphics in WordWorth with MetaView."
  433.      )
  434.   )
  435.   (set #text_ww_path
  436.      (cat
  437.         "Please choose the WordWorth ARexx scripts drawer."
  438.      )
  439.   )
  440.   (set #help_ww_path
  441.      (cat
  442.         "I want to install one ARexx script for import\n"
  443.         "graphics in WordWorth with MetaView."
  444.      )
  445.   )
  446.   (set #text_ww_import
  447.      (cat
  448.         "copying WordWorth import script"
  449.      )
  450.   )
  451.   (set #text_fw
  452.      (cat
  453.         "Do you have FinalWriter installed,\n"
  454.         "and want to import gfx with MetaView?"
  455.      )
  456.   )
  457.   (set #help_fw
  458.      (cat
  459.         "I want to install one ARexx script for import\n"
  460.         "graphics in FinalWriter with MetaView."
  461.      )
  462.   )
  463.   (set #text_fw_path
  464.      (cat
  465.         "Please choose the FinalWriter ARexx scripts drawer."
  466.      )
  467.   )
  468.   (set #help_fw_path
  469.      (cat
  470.         "I want to install one ARexx script for import\n"
  471.         "graphics in FinalWriter with MetaView."
  472.      )
  473.   )
  474.   (set #text_fw_import
  475.      (cat
  476.         "copying FinalWriter import script"
  477.      )
  478.   )
  479.   (set #text_examples
  480.      (cat
  481.         "Should I copy the example files?"
  482.      )
  483.   )
  484.   (set #text_examples_copy
  485.      (cat
  486.         "copy Examples"
  487.      )
  488.   )
  489.   (set #help_examples_copy
  490.      (cat
  491.         "Now, I want to copy some Examples."
  492.      )
  493.   )
  494.   (set #text_setpatch
  495.      (cat
  496.         "I want to copy a new SetPatch (43.6) to your 'c:' directory.\n"
  497.         "This Software are published from Amiga Technologie and\n"
  498.         "fix also a bug on 'mathieeesingbas.library' in Kick 3.1.\n"
  499.         "The old 'c:SetPatch' will renamed to 'c:SetPatch.old'."
  500.      )
  501.   )
  502.   (set #help_setpatch
  503.      (cat
  504.         "Press 'Copy' to install the new SetPatch and 'Skip' for not install.\n"
  505.         "You are advised to install this Patch.\n"
  506.         "But if you get a GURU on MetaView-startup you must!"
  507.      )
  508.   )
  509.   (set #text_setpatch_copy
  510.      (cat
  511.         "copy new SetPatch"
  512.      )
  513.   )
  514.   (set #text_tabs_copy
  515.      (cat
  516.         "copy tabs.gadget"
  517.      )
  518.   )
  519.   (set #text_variable
  520.      (cat
  521.         "Should I update the MetaView.path environment variable?"
  522.      )
  523.   )
  524.   (set #help_variable
  525.      (cat
  526.         "The ARexxScripts and the MetaView.datatype will use the variable for locate the executable."
  527.      )
  528.   )
  529.   (set #text_envarc
  530.      (cat
  531.         "Create ENVARC: variable with path of MetaView"
  532.      )
  533.   )
  534.   (set #help_envarc
  535.      (cat
  536.         "The variable will be stored resetproof in ENVARC:."
  537.       )
  538.   )
  539.   (set #text_env
  540.      (cat
  541.         "Create ENV: variable with path of MetaView"
  542.      )
  543.   )
  544.   (set #help_env
  545.      (cat
  546.         "The variable will be stored for instant use in ENV:."
  547.      )
  548.   )
  549.   (set #text_keyfile
  550.      (cat
  551.         "copy keyfile"
  552.      )
  553.   )
  554.   (set #help_keyfile
  555.      (cat
  556.         "Now I copy the keyfile."
  557.      )
  558.   )
  559.   (set #text_register
  560.      (cat
  561.         "Don`t forget to register!\n\n"
  562.         "Please send $20 or 30,- DM to me:\n\n"
  563.         "Henk Jonas\n"
  564.         "Zionskirchstr. 28\n"
  565.         "10119 Berlin\n"
  566.         "Germany"
  567.      )
  568.   )
  569.   (set #help_register
  570.      (cat
  571.         "Look at MetaView.readme, MetaView.doc "
  572.         "or MetaView.guide for register."
  573.      )
  574.   )
  575.   (set #text_thanx
  576.      (cat
  577.         "Thank you for registering MetaView!"
  578.      )
  579.   )
  580. ;/**/
  581.  
  582. ;************************************************
  583. ;
  584. ; deutsche Texte für die Installation
  585. ;
  586. ;************************************************
  587. ;/**/
  588.  
  589. (debug #language-number)
  590. (if (= #language-number 1)
  591.   (
  592.     (set #YES "Ja")
  593.     (set #NO  "Nein")
  594.     (set #text_copy "Kopiere")
  595.     (set #text_skip "Überspringe")
  596.     (set #text_update "Erneuere")
  597.  
  598.     (set #text_present
  599.        (cat
  600.            "Henk Jonas\n presentiert:\n\n MetaView\n\n"
  601.            "Dieses Programm zeigt Vektorgrafiken an\n"
  602.            "und konvertiert diese,\n"
  603.            "benutzt die 'amigametaformat.library'\n und ist SHAREWARE.\n"
  604.            "\n*Die Texte der Installation wurden übersetzt von:*\n"
  605.            "\n*Henk Jonas - subvcbhd@linux.zrz.tu-berlin.de*\n"
  606.        )
  607.     )
  608.     (set #text_programm_update
  609.        (cat
  610.           "Es wurde die MetaView-Schublade gefunden. "
  611.           "Belasse den Pfad im übergeordneten Verzeichnis der MetaView-Schublade, "
  612.           "um die existierende MetaView-Installation "
  613.           "auf den neusten Stand zu bringen."
  614.        )
  615.     )
  616.     (set #text_new
  617.        (cat
  618.           "Bitte wähle das Zielverzeichnis für MetaView aus. "
  619.           "Es wird eine Schublade mit dem Namen MetaView erzeugt, "
  620.           "wenn in dem Verzeichnis noch keine vorhanden ist."
  621.        )
  622.     )
  623.     (set #text_drawer
  624.        (cat
  625.           "Es wird die Schublade 'MetaView' erzeugt."
  626.        )
  627.     )
  628.     (set #text_library
  629.        (cat
  630.           "Nun wird die 'amigametaformat.library' installiert."
  631.        )
  632.     )
  633.     (set #help_library
  634.        (cat
  635.           "Diese Bibliothek wird von MetaView gebraucht. "
  636.           "Es ist sehr wichtig, sie zu installieren!"
  637.        )
  638.     )
  639.     (set #text_driver
  640.        (cat
  641.           "Nun werden die verschiedenen Ausgabetreiber für die 'amigametaformat.library' installiert."
  642.        )
  643.     )
  644.     (set #help_driver
  645.        (cat
  646.           "Die Optionen:\n"
  647.           "* Strip       : der Treiber für Bildschirm, Drucker und ILBM-Speicherung\n"
  648.           "* AMF         : für die Ausgabe als Amiga Metafile Format.\n"
  649.           "* CGM         : für die Ausgabe als Computer Graphics Metafile.\n"
  650.           "* EPS         : für die Ausgabe als Encapsulated PostScript.\n"
  651.           "* GEM         : für die Ausgabe als GEM Metafile.\n"
  652.           "* WordWorth   : erzeugt ARexx-Skripte, um sie in WordWorth zu benutzen.\n"
  653.           "* DR2D        : für die Ausgabe als DR2D (für PageStream, DrawStudio...)\n"
  654.           "* HPGL        : für die Ausgabe als HPGL (für Plotter)\n"
  655.           "* AI          : für die Ausgabe als AdobeIllustrator\n"
  656.           "* JMF         : für die Ausgabe als JavaMetaFile (für WWW-Veröffentlichungen)\n"
  657.           "* WMF         : für die Ausgabe als WindowsMetaFile\n"
  658.           "* FIG         : für die Ausgabe als XFIG Datei\n"
  659.        )
  660.     )
  661.     (set #text_strip
  662.        (cat
  663.           "Nun wird der strip-Treiber der 'amigametaformat.library' installiert."
  664.        )
  665.     )
  666.     (set #help_strip
  667.        (cat
  668.           "'strip' für alle Ausgaben auf dem Bildschirm, dem Drucker und Speichern als ILBM\n"
  669.        )
  670.     )
  671.     (set #text_file
  672.        (cat
  673.           "Nun wird der file-Treiber der 'amigametaformat.library' installiert."
  674.        )
  675.     )
  676.     (set #help_file
  677.        (cat
  678.           "'file' zum Speichern als Amiga Meta Format Grafikdatei\n"
  679.        )
  680.     )
  681.     (set #text_cgm
  682.        (cat
  683.           "Nun wird der CGM -Treiber der 'amigametaformat.library' installiert."
  684.        )
  685.     )
  686.     (set #help_cgm
  687.        (cat
  688.           "'CGM' zum Speichern als Computer Graphics Metafile\n"
  689.        )
  690.     )
  691.     (set #text_eps
  692.        (cat
  693.           "Nun wird der EPS-Treiber der 'amigametaformat.library' installiert."
  694.        )
  695.     )
  696.     (set #help_eps
  697.        (cat
  698.           "'EPS' zum Speichern als Encapsulated PostScript\n"
  699.        )
  700.     )
  701.     (set #text_gem
  702.        (cat
  703.           "Nun wird der GEM-Treiber der 'amigametaformat.library' installiert."
  704.        )
  705.     )
  706.     (set #help_gem
  707.        (cat
  708.           "'GEM' zum Speichern als GEM Grafikdatei\n"
  709.        )
  710.     )
  711.     (set #text_ww
  712.        (cat
  713.           "Nun wird der WordWorth-ARexx-Treiber der 'amigametaformat.library' installiert."
  714.        )
  715.     )
  716.     (set #help_ww
  717.        (cat
  718.           "WordWorth-ARexx-Treiber erzeugt WordWorth-ARexx-Skripte\n"
  719.        )
  720.     )
  721.     (set #text_dr2d
  722.        (cat
  723.           "Nun wird der DR2D-Treiber der 'amigametaformat.library' installiert."
  724.        )
  725.     )
  726.     (set #help_dr2d
  727.        (cat
  728.           "'DR2D' zum Speichern als DR2D Grafikdatei\n"
  729.        )
  730.     )
  731.     (set #text_hpgl
  732.        (cat
  733.           "Nun wird der HPGL-Treiber der 'amigametaformat.library' installiert."
  734.        )
  735.     )
  736.     (set #help_hpgl
  737.        (cat
  738.           "'HPGL' zum Speichern als HPGL Grafikdatei\n"
  739.        )
  740.     )
  741.     (set #text_ai
  742.        (cat
  743.           "Nun wird der AI-Treiber der 'amigametaformat.library' installiert."
  744.        )
  745.     )
  746.     (set #help_ai
  747.        (cat
  748.           "'AI' zum Speichern von Adobe Illustrator Grafikdateien\n"
  749.        )
  750.     )
  751.     (set #text_jmf
  752.        (cat
  753.           "Nun wird der JMF-Treiber der 'amigametaformat.library' installiert."
  754.        )
  755.     )
  756.     (set #help_jmf
  757.        (cat
  758.           "'JMF' zum Speichern von JMF Grafikdateien\n"
  759.        )
  760.     )
  761.     (set #text_wmf
  762.        (cat
  763.           "Nun wird der WMF-Treiber der 'amigametaformat.library' installiert."
  764.        )
  765.     )
  766.     (set #help_wmf
  767.        (cat
  768.           "'WMF' zum Speichern von WMF Grafikdateien\n"
  769.        )
  770.     )
  771.     (set #text_fig
  772.        (cat
  773.           "Nun wird der FIG-Treiber der 'amigametaformat.library' installiert."
  774.        )
  775.     )
  776.     (set #help_fig
  777.        (cat
  778.           "'FIG' zum Speichern von FIG Grafikdateien\n"
  779.        )
  780.     )
  781.     (set #text_programm
  782.        (cat
  783.           "kopiere das Programm"
  784.        )
  785.     )
  786.     (set #help_programm
  787.        (cat
  788.           "Nun wird das Programm kopiert."
  789.        )
  790.     )
  791.     (set #text_doc
  792.        (cat
  793.           "kopiere Dokumentation"
  794.        )
  795.     )
  796.     (set #help_doc
  797.        (cat
  798.           "Nun wird die Dokumentation kopiert.\n"
  799.           "Diese Textdatei ist veraltet und es sollte statt dessen das Guide benutzt werden."
  800.        )
  801.     )
  802.     (set #text_guide
  803.        (cat
  804.           "Nun wird die Hilfedatei (Guide) für MetaView kopiert. "
  805.           "Was ist Deine bevorzugte Sprache?"
  806.        )
  807.     )
  808.     (set #text_english_guide
  809.        (cat
  810.           "kopiere englisches MetaView.guide"
  811.        )
  812.     )
  813.     (set #help_english_guide
  814.        (cat
  815.           "Nun wird das englische MetaView.guide kopiert."
  816.        )
  817.     )
  818.     (set #text_german_guide
  819.        (cat
  820.           "kopiere deutsches MetaView.guide"
  821.        )
  822.     )
  823.     (set #help_german_guide
  824.        (cat
  825.           "Nun wird das deutsche MetaView.guide kopiert."
  826.        )
  827.     )
  828.     (set #text_spanish_guide
  829.        (cat
  830.           "kopiere spanisches MetaView.guide"
  831.        )
  832.     )
  833.     (set #help_spanish_guide
  834.        (cat
  835.           "Nun wird das spanische MetaView.guide kopiert."
  836.        )
  837.     )
  838.     (set #text_polish_guide
  839.        (cat
  840.           "kopiere polnisches MetaView.guide"
  841.        )
  842.     )
  843.     (set #help_polish_guide
  844.        (cat
  845.           "Nun wird das polnische MetaView.guide kopiert."
  846.        )
  847.     )
  848.     (set #text_czech_guide
  849.        (cat
  850.           "kopiere tschechisches MetaView.guide"
  851.        )
  852.     )
  853.     (set #help_czech_guide
  854.        (cat
  855.           "Nun wird das tschechische MetaView.guide kopiert."
  856.        )
  857.     )
  858.     (set #text_catalan_guide
  859.        (cat
  860.           "kopiere katalonisches MetaView.guide"
  861.        )
  862.     )
  863.     (set #help_catalan_guide
  864.        (cat
  865.           "Nun wird das katalonische MetaView.guide kopiert."
  866.        )
  867.     )
  868.     (set #text_readme
  869.        (cat
  870.           "kopiere amigametaformat.readme"
  871.        )
  872.     )
  873.     (set #help_readme
  874.        (cat
  875.           "Nun wird die Datei 'amigametaformat.readme' kopiert."
  876.        )
  877.     )
  878.     (set #text_arexx
  879.        (cat
  880.           "kopiere ARexx-Beispiele"
  881.        )
  882.     )
  883.     (set #help_arexx
  884.        (cat
  885.           "Nun werden einige Beispiele für die Benutzung von MetaView und "
  886.           "der Skriptsprache ARexx kopiert."
  887.        )
  888.     )
  889.     (set #text_ds
  890.        (cat
  891.           "Hast Du DrawStudio installiert "
  892.           "und möchtest Grafiken mittels "
  893.           "MetaView importieren und exportieren?"
  894.        )
  895.     )
  896.     (set #help_ds
  897.        (cat
  898.           "Zwei ARexx-Skripte zum Im- und Export von Grafiken"
  899.           "in DrawStudio mittels MetaView sollen kopiert werden."
  900.        )
  901.     )
  902.     (set #text_ds_path
  903.        (cat
  904.           "Bitte wähle das Verzeichnis, in dem DrawStudio seine ARexx-Skripte aufbewahrt."
  905.        )
  906.     )
  907.     (set #help_ds_path
  908.        (cat
  909.           "Es werden zwei ARexx-Skripte zum Im- und Export von Grafiken "
  910.           "in DrawStudio mittels MetaView kopiert."
  911.        )
  912.     )
  913.     (set #text_ds_import
  914.        (cat
  915.           "kopiere DrawStudio Import-Skript"
  916.        )
  917.     )
  918.     (set #text_ds_export
  919.        (cat
  920.           "kopiere DrawStudio Export-Skript"
  921.        )
  922.     )
  923.     (set #text_pgs
  924.        (cat
  925.           "Hast Du PageStream 3.x installiert "
  926.           "und möchtest Grafiken mittels MetaView importieren?"
  927.        )
  928.     )
  929.     (set #help_pgs
  930.        (cat
  931.           "Es soll ein ARexx-Skript zum Import "
  932.           "von Grafiken in PageStream mittels MetaView kopiert werden."
  933.        )
  934.     )
  935.     (set #text_pgs_path
  936.        (cat
  937.           "Bitte wähle das Verzeichnis aus, in den PageStream seine ARexx-Skripte ablegt."
  938.        )
  939.     )
  940.     (set #help_pgs_path
  941.        (cat
  942.           "Es soll ein ARexx-Skript zum Import "
  943.           "von Grafiken in PageStream mittels MetaView kopiert werden."
  944.        )
  945.     )
  946.     (set #text_pgs_import
  947.        (cat
  948.           "kopiere PageStream Import-Skript"
  949.        )
  950.     )
  951.     (set #text_ww
  952.        (cat
  953.           "Hast Du WordWorth installiert "
  954.           "und möchtest Grafiken mittels MetaView importieren?"
  955.        )
  956.     )
  957.     (set #help_ww
  958.        (cat
  959.           "Es soll ein ARexx-Skript zum Import "
  960.           "von Grafiken in WordWorth mittels MetaView kopiert werden."
  961.        )
  962.     )
  963.     (set #text_ww_path
  964.        (cat
  965.           "Bitte wähle das Verzeichnis aus, in den WordWorth seine ARexx-Skripte ablegt."
  966.        )
  967.     )
  968.     (set #help_ww_path
  969.        (cat
  970.           "Es soll ein ARexx-Skript zum Import "
  971.           "von Grafiken in WordWorth mittels MetaView kopiert werden."
  972.        )
  973.     )
  974.     (set #text_ww_import
  975.        (cat
  976.           "kopiere WordWorth Import-Skript"
  977.        )
  978.     )
  979.     (set #text_fw
  980.        (cat
  981.           "Hast Du FinalWriter installiert "
  982.           "und möchtest Grafiken mittels MetaView importieren?"
  983.        )
  984.     )
  985.     (set #help_fw
  986.        (cat
  987.           "Es soll ein ARexx-Skript zum Import "
  988.           "von Grafiken in FinalWriter mittels MetaView kopiert werden."
  989.        )
  990.     )
  991.     (set #text_fw_path
  992.        (cat
  993.           "Bitte wähle das Verzeichnis aus, in den FinalWriter seine ARexx-Skripte ablegt."
  994.        )
  995.     )
  996.     (set #help_fw_path
  997.        (cat
  998.           "Es soll ein ARexx-Skript zum Import "
  999.           "von Grafiken in FinalWriter mittels MetaView kopiert werden."
  1000.        )
  1001.     )
  1002.     (set #text_fw_import
  1003.        (cat
  1004.           "kopiere FinalWriter Import-Skript"
  1005.        )
  1006.     )
  1007.     (set #text_examples
  1008.        (cat
  1009.           "Sollen einige Beispieldateien kopiert werden?"
  1010.        )
  1011.     )
  1012.     (set #text_examples_copy
  1013.        (cat
  1014.           "kopiere Beispieldateien"
  1015.        )
  1016.     )
  1017.     (set #help_examples_copy
  1018.        (cat
  1019.           "Es werden einige Beispieldateien kopiert."
  1020.        )
  1021.     )
  1022.     (set #text_setpatch
  1023.        (cat
  1024.           "Es soll ein neuer SetPatch-Befehl (43.6) in Dein 'c:' Verzeichnis kopiert werden.\n"
  1025.           "Dieser Befehl wurde von Amiga Technologie veröffentlicht und "
  1026.           "behebt unteranderem einen Fehler in der 'mathieeesingbas.library' in Kick 3.1.\n"
  1027.           "Der alte 'c:SetPatch' wird umbenannt nach 'c:SetPatch.old'."
  1028.        )
  1029.     )
  1030.     (set #help_setpatch
  1031.        (cat
  1032.           "Wähle 'Kopiere', um den neuen SetPatch-Befehl zu installieren, oder 'Überspringe', um ihn nicht zu installieren.\n"
  1033.           "Du solltest diesen Befehl installieren.\n"
  1034.           "Wenn direkt beim Starten von MetaView eine GURU erscheint, behebt dieser Befehl das Problem!"
  1035.        )
  1036.     )
  1037.     (set #text_setpatch_copy
  1038.        (cat
  1039.           "kopiere neuen SetPatch-Befehl"
  1040.        )
  1041.     )
  1042.     (set #text_tabs_copy
  1043.        (cat
  1044.           "kopiere tabs.gadget"
  1045.        )
  1046.     )
  1047.     (set #text_variable
  1048.        (cat
  1049.           "Soll die 'MetaView.path' Umgebungsvariable erneuert werden?"
  1050.        )
  1051.     )
  1052.     (set #help_variable
  1053.        (cat
  1054.           "Die ARexx-Skripte und der MetaView.datatype benutzen diese Variable, um das Programm 'MetaView' zu finden."
  1055.        )
  1056.     )
  1057.     (set #text_envarc
  1058.        (cat
  1059.           "erzeuge Variable in ENVARC: mit Pfad von MetaView"
  1060.        )
  1061.     )
  1062.     (set #help_envarc
  1063.        (cat
  1064.           "Die Variable wird resetfest in ENVARC: gespeichert."
  1065.         )
  1066.     )
  1067.     (set #text_env
  1068.        (cat
  1069.           "erzeuge Variable in ENV: mit Pfad von MetaView"
  1070.        )
  1071.     )
  1072.     (set #help_env
  1073.        (cat
  1074.           "Die Variable wird für sofortige Benutzung in ENV: gespeichert."
  1075.        )
  1076.     )
  1077.     (set #text_keyfile
  1078.        (cat
  1079.           "kopiere Keyfile"
  1080.        )
  1081.     )
  1082.     (set #help_keyfile
  1083.        (cat
  1084.           "Es wird das Keyfile kopiert."
  1085.        )
  1086.     )
  1087.     (set #text_register
  1088.        (cat
  1089.           "Bitte vergiß nicht Dich registrieren zu lassen, wenn Du das Programm öfter benutzt.\n\n"
  1090.           "Bitte sende dazu $20 oder 30,- DM an mich:\n\n"
  1091.           "Henk Jonas\n"
  1092.           "Zionskirchstr. 28\n"
  1093.           "10119 Berlin\n"
  1094.           "Deutschland"
  1095.        )
  1096.     )
  1097.     (set #help_register
  1098.        (cat
  1099.           "Siehe in die Dateien MetaView.readme, MetaView.doc "
  1100.           "oder MetaView.guide nach, wie Du Dich registrieren lassen kannst."
  1101.        )
  1102.     )
  1103.     (set #text_thanx
  1104.        (cat
  1105.           "Vielen Dank, daß Du Dich für MetaView registrieren lassen hast."
  1106.        )
  1107.     )
  1108.   )
  1109. )
  1110. ;/**/
  1111.  
  1112. ;************************************************
  1113. ;
  1114. ; spanisch
  1115. ;
  1116. ;************************************************
  1117. ;/**/
  1118.  
  1119. (if (= #language-number 2)
  1120.   (
  1121.     (set #YES "Sí")
  1122.     (set #NO  "No")
  1123.     (set #text_copy "Copiar")
  1124.     (set #text_skip "Saltar esta parte")
  1125.     (set #text_update "Actualizar")
  1126.  
  1127.     (set #text_present
  1128.        (cat
  1129.           "Henk Jonas\n presenta:\n\n MetaView\n\n"
  1130.           "Este programa, que es SHAREWARE, muestra\n"
  1131.           "y convierte ficheros gráficos vectoriales,\n"
  1132.           "gracias a la biblioteca 'amigametaformat.library'.\n\n"
  1133.           "\n*Guión instalador traducido al español por:*\n"
  1134.           "*Dámaso D. Estévez - amidde@arrakis.es*\n"
  1135.        )
  1136.     )
  1137.     (set #text_programm_update
  1138.        (cat
  1139.           "He encontrado el cajón MetaView: elija como camino\n"
  1140.           "de acceso el del directorio en el que se encuentra\n"
  1141.           "dicho cajón para actualizar la versión ya instalada."
  1142.        )
  1143.     )
  1144.     (set #text_new
  1145.        (cat
  1146.           "Por favor, elija el directorio de destino de MetaView:\n"
  1147.           "crearé allí el cajón MetaView, si éste aún no existe."
  1148.        )
  1149.     )
  1150.     (set #text_drawer
  1151.        (cat
  1152.           "Estoy creando un cajón llamado 'MetaView'."
  1153.        )
  1154.     )
  1155.     (set #text_library
  1156.        (cat
  1157.           "Ahora instalaré la biblioteca 'amigametaformat.library'."
  1158.        )
  1159.     )
  1160.     (set #help_library
  1161.        (cat
  1162.           "\nEsta  biblioteca es necesaria para el programa... "
  1163.           "¡así que es muy importante su instalación!"
  1164.        )
  1165.     )
  1166.     (set #text_driver
  1167.        (cat
  1168.           "Ahora instalaré los diferentes módulos de salida"
  1169.           "de la biblioteca 'amigametaformat.library'."
  1170.        )
  1171.     )
  1172.     (set #help_driver
  1173.        (cat
  1174.           "\nMódulos disponibles:\n\n"
  1175.           "* Strip       : genera cualquier imagen, ya sea en pantalla, ILBM, impresora, etc.\n"
  1176.           "* AMF         : genera ficheros en formato 'Amiga Metafile Format'.\n"
  1177.           "* CGM         : genera ficheros en formato 'Computer Graphics Metafile'.\n"
  1178.           "* EPS         : genera ficheros en formato 'Encapsulated PostScript'.\n"
  1179.           "* GEM         : genera ficheros en formato 'GEM Metafile'.\n"
  1180.           "* WordWorth   : crear guiones ARexx, para usar con WordWorth.\n"
  1181.           "* DR2D        : genera ficheros en formato DR2D (PageStream, DrawStudio...)\n"
  1182.           "* HPGL        : genera ficheros en formato HPGL (trazadores)\n"
  1183.           "* AI          : genera ficheros en formato 'AdobeIllustrator'\n"
  1184.           "* JMF         : genera ficheros en formato 'JavaMetaFile' (autoedición HTML)\n"
  1185.           "* WMF         : genera ficheros en formato 'WindowsMetaFile'\n"
  1186.           "* FIG         : genera ficheros en formato 'XFIG'\n"
  1187.        )
  1188.     )
  1189.     (set #text_strip
  1190.        (cat
  1191.           "Ahora instalaré el módulo auxiliar de bandas de la biblioteca 'amigametaformat.library'."
  1192.        )
  1193.     )
  1194.     (set #help_strip
  1195.        (cat
  1196.           "\nMódulo para dividir en bandas todas las imágenes enviada a pantalla, impresora o fichero ILBM\n"
  1197.        )
  1198.     )
  1199.     (set #text_file
  1200.        (cat
  1201.           "Ahora instalaré el módulo auxiliar de ficheros de la biblioteca 'amigametaformat.library'."
  1202.        )
  1203.     )
  1204.     (set #help_file
  1205.        (cat
  1206.           "\nMódulo para guardar ficheros con formato Amiga Meta Format Metafile\n"
  1207.        )
  1208.     )
  1209.     (set #text_cgm
  1210.        (cat
  1211.           "Ahora instalaré el módulo auxiliar CGM de la biblioteca 'amigametaformat.library'."
  1212.        )
  1213.     )
  1214.     (set #help_cgm
  1215.        (cat
  1216.           "\nMódulo para guardar ficheros con formato CGM\n"
  1217.        )
  1218.     )
  1219.     (set #text_eps
  1220.        (cat
  1221.           "Ahora instalaré el módulo auxiliar EPS de la biblioteca 'amigametaformat.library'."
  1222.        )
  1223.     )
  1224.     (set #help_eps
  1225.        (cat
  1226.           "\nMódulo para guardar ficheros con formato EPS\n"
  1227.        )
  1228.     )
  1229.     (set #text_gem
  1230.        (cat
  1231.           "Ahora instalaré el módulo auxiliar GEM de la biblioteca 'amigametaformat.library'."
  1232.        )
  1233.     )
  1234.     (set #help_gem
  1235.        (cat
  1236.           "\nMódulo para guardar ficheros con formato GEM\n"
  1237.        )
  1238.     )
  1239.     (set #text_ww
  1240.        (cat
  1241.           "Ahora instalaré el módulo auxiliar WordWorth-ARexx de la biblioteca 'amigametaformat.library'."
  1242.        )
  1243.     )
  1244.     (set #help_ww
  1245.        (cat
  1246.           "\nMódulo para la creación de guiones WordWorth-ARexx\n"
  1247.        )
  1248.     )
  1249.     (set #text_dr2d
  1250.        (cat
  1251.           "Ahora instalaré el módulo auxiliar DR2D de la biblioteca 'amigametaformat.library'."
  1252.        )
  1253.     )
  1254.     (set #help_dr2d
  1255.        (cat
  1256.           "\nMódulo para la creación de ficheros DR2D\n"
  1257.        )
  1258.     )
  1259.     (set #text_hpgl
  1260.        (cat
  1261.           "Ahora instalaré el módulo auxiliar HPGL de la biblioteca 'amigametaformat.library'."
  1262.        )
  1263.     )
  1264.     (set #help_hpgl
  1265.        (cat
  1266.           "\nMódulo para la creación de ficheros HPGL\n"
  1267.        )
  1268.     )
  1269.     (set #text_ai
  1270.        (cat
  1271.           "Ahora instalaré el módulo auxiliar AI de la biblioteca 'amigametaformat.library'."
  1272.        )
  1273.     )
  1274.     (set #help_ai
  1275.        (cat
  1276.           "\nMódulo para la creación de ficheros AI\n"
  1277.        )
  1278.     )
  1279.     (set #text_jmf
  1280.        (cat
  1281.           "Ahora instalaré el módulo auxiliar JMF de la biblioteca 'amigametaformat.library'."
  1282.        )
  1283.     )
  1284.     (set #help_jmf
  1285.        (cat
  1286.           "\nMódulo para la creación de fichero WMF\n"
  1287.        )
  1288.     )
  1289.     (set #text_wmf
  1290.        (cat
  1291.           "Ahora instalaré el módulo auxiliar WMF de la biblioteca 'amigametaformat.library'."
  1292.        )
  1293.     )
  1294.     (set #help_wmf
  1295.        (cat
  1296.           "\nMódulo para la creación de ficheros WMF\n"
  1297.        )
  1298.     )
  1299.     (set #text_fig
  1300.        (cat
  1301.           "Ahora instalaré el módulo auxiliar FIG de la biblioteca 'amigametaformat.library'."
  1302.        )
  1303.     )
  1304.     (set #help_fig
  1305.        (cat
  1306.           "\nMódulo para la creación de ficheros FIG\n"
  1307.        )
  1308.     )
  1309.     (set #text_programm
  1310.        (cat
  1311.           "Copiar programa"
  1312.        )
  1313.     )
  1314.     (set #help_programm
  1315.        (cat
  1316.           "\nAhora procederé a copiar el programa."
  1317.        )
  1318.     )
  1319.     (set #text_doc
  1320.        (cat
  1321.           "Copiar documentación"
  1322.        )
  1323.     )
  1324.     (set #help_doc
  1325.        (cat
  1326.           "\nAhora procederé a copiar la documentación "
  1327.           "(este fichero de texto está obsoleto, utilice "
  1328.           "el fichero guía en su lugar)."
  1329.        )
  1330.     )
  1331.     (set #text_guide
  1332.        (cat
  1333.           "Ahora procederé a copiar la documentación\n"
  1334.           "de MetaView. ¿Qué idioma prefiere?"
  1335.        )
  1336.     )
  1337.     (set #text_english_guide
  1338.        (cat
  1339.           "Copiar guía de MetaView (inglés)"
  1340.        )
  1341.     )
  1342.     (set #help_english_guide
  1343.        (cat
  1344.           "\nAhora copiaré la versión inglesa del fichero de documentación 'MetaView.guide'."
  1345.        )
  1346.     )
  1347.     (set #text_german_guide
  1348.        (cat
  1349.           "Copiar guía de MetaView (alemán)"
  1350.        )
  1351.     )
  1352.     (set #help_german_guide
  1353.        (cat
  1354.           "\nAhora copiaré la versión alemana del fichero de documentación 'MetaView.guide'."
  1355.        )
  1356.     )
  1357.     (set #text_spanish_guide
  1358.        (cat
  1359.           "Copiar guía de MetaView (español)"
  1360.        )
  1361.     )
  1362.     (set #help_spanish_guide
  1363.        (cat
  1364.           "\nAhora copiaré la versión española del fichero de documentación 'MetaView.guide'."
  1365.        )
  1366.     )
  1367.     (set #text_polish_guide
  1368.        (cat
  1369.           "Copiar guía de MetaView (polaco)"
  1370.        )
  1371.     )
  1372.     (set #help_polish_guide
  1373.        (cat
  1374.           "\nAhora copiaré la versión poloca del fichero de documentación 'MetaView.guide'."
  1375.        )
  1376.     )
  1377.     (set #text_czech_guide
  1378.        (cat
  1379.           "Copiar guía de MetaView (checo)"
  1380.        )
  1381.     )
  1382.     (set #help_czech_guide
  1383.        (cat
  1384.           "\nAhora copiaré la versión checa del fichero de documentación 'MetaView.guide'."
  1385.        )
  1386.     )
  1387.     (set #text_catalan_guide
  1388.        (cat
  1389.           "Copiar guía de MetaView (catalá)"
  1390.        )
  1391.     )
  1392.     (set #help_catalan_guide
  1393.        (cat
  1394.           "\nAhora copiaré la versión catalá del fichero de documentación 'MetaView.guide'."
  1395.        )
  1396.     )
  1397.     (set #text_readme
  1398.        (cat
  1399.           "Copiar el fichero 'amigametaformat.readme'"
  1400.        )
  1401.     )
  1402.     (set #help_readme
  1403.        (cat
  1404.           "\nAhora copiaré el fichero 'amigametaformat.readme'."
  1405.        )
  1406.     )
  1407.     (set #text_arexx
  1408.        (cat
  1409.           "Copiar ejemplos ARexx"
  1410.        )
  1411.     )
  1412.     (set #help_arexx
  1413.        (cat
  1414.           "\nAhora copiaré los ejemplos ARexx."
  1415.        )
  1416.     )
  1417.     (set #text_ds
  1418.        (cat
  1419.           "¿Tiene instalado el programa DrawStudio y quiere\n"
  1420.           "(im|ex)portar gráficos ayudado por MetaView?"
  1421.        )
  1422.     )
  1423.     (set #help_ds
  1424.        (cat
  1425.           "\nAhora procederé a instalar un par de guiones ARexx para que el programa "
  1426.           "DrawStudio pueda importar/exportar gráficos ayudado de MetaView."
  1427.        )
  1428.     )
  1429.     (set #text_ds_path
  1430.        (cat
  1431.           "Por favor, elija el cajón donde residen\n"
  1432.           "los guiones ARexx de DrawStudio."
  1433.        )
  1434.     )
  1435.     (set #help_ds_path
  1436.        (cat
  1437.           "\nMe ha pedido instalar un par de guiones ARexx para que el programa "
  1438.           "DrawStudio pueda importar/exportar gráficos ayudado de MetaView... "
  1439.           "y para ello  necesito que me indique el camino de acceso correspondiente."
  1440.        )
  1441.     )
  1442.     (set #text_ds_import
  1443.        (cat
  1444.           "Copiar guión de importación para DrawStudio"
  1445.        )
  1446.     )
  1447.     (set #text_ds_export
  1448.        (cat
  1449.           "Copiar guión de exportación para DrawStudio"
  1450.        )
  1451.     )
  1452.     (set #text_pgs
  1453.        (cat
  1454.           "¿Tiene instalado el programa PageStream 3.x y\n"
  1455.           "quiere importar gráficos ayudado por MetaView?"
  1456.        )
  1457.     )
  1458.     (set #help_pgs
  1459.        (cat
  1460.           "\nAhora procederé a instalar un guión ARexx para que el programa PageStream "
  1461.           "pueda importar gráficos ayudado de MetaView."
  1462.        )
  1463.     )
  1464.     (set #text_pgs_path
  1465.        (cat
  1466.           "Por favor, elija el cajón donde residen\n"
  1467.           "los guiones ARexx de PageStream."
  1468.        )
  1469.     )
  1470.     (set #help_pgs_path
  1471.        (cat
  1472.           "\nMe ha pedido instalar un guión ARexx para que el programa PageStream "
  1473.           "pueda importar gráficos ayudado de MetaView... y para ello "
  1474.           "necesito que me indique el camino de acceso correspondiente."
  1475.        )
  1476.     )
  1477.     (set #text_pgs_import
  1478.        (cat
  1479.           "Copiar guión de importación para PageStream"
  1480.        )
  1481.     )
  1482.     (set #text_ww
  1483.        (cat
  1484.           "¿Tiene instalado el programa WordWorth y\n"
  1485.           "quiere importar gráficos ayudado por MetaView?"
  1486.        )
  1487.     )
  1488.     (set #help_ww
  1489.        (cat
  1490.           "\nAhora procederé a instalar un guión ARexx para que el programa WordWorth "
  1491.           "pueda importar gráficos ayudado de MetaView."
  1492.        )
  1493.     )
  1494.     (set #text_ww_path
  1495.        (cat
  1496.           "Por favor, elija el cajón donde residen\n"
  1497.           "los guiones ARexx de WordWorth."
  1498.        )
  1499.     )
  1500.     (set #help_ww_path
  1501.        (cat
  1502.           "\nMe he pedido instalar un guión ARexx para que el programa WordWorth "
  1503.           "pueda importar gráficos ayudado de MetaView... y para ello "
  1504.           "necesito que me indique el camino de acceso correspondiente."
  1505.        )
  1506.     )
  1507.     (set #text_ww_import
  1508.        (cat
  1509.           "Copiar guión de importación para WordWorth"
  1510.        )
  1511.     )
  1512.     (set #text_fw
  1513.        (cat
  1514.           "¿Tiene instalado el programa FinalWriter y\n"
  1515.           "quiere importar gráficos ayudado por MetaView?"
  1516.        )
  1517.     )
  1518.     (set #help_fw
  1519.        (cat
  1520.           "\nAhora procederé a instalar un guión ARexx para que el programa FinalWriter "
  1521.           "pueda importar gráficos ayudado de MetaView."
  1522.        )
  1523.     )
  1524.     (set #text_fw_path
  1525.        (cat
  1526.           "Por favor, elija el cajón donde residen\n"
  1527.           "los guiones ARexx de FinalWriter."
  1528.        )
  1529.     )
  1530.     (set #help_fw_path
  1531.        (cat
  1532.           "\nMe ha pedido instalar un guión ARexx para que el programa FinalWriter "
  1533.           "pueda importar gráficos ayudado de MetaView... y para ello "
  1534.           "necesito que me indique el camino de acceso correspondiente."
  1535.        )
  1536.     )
  1537.     (set #text_fw_import
  1538.        (cat
  1539.           "Copiar guión de importación para FinalWriter"
  1540.        )
  1541.     )
  1542.     (set #text_examples
  1543.        (cat
  1544.           "¿Quiere que copie los ficheros de ejemplo?"
  1545.        )
  1546.     )
  1547.     (set #text_examples_copy
  1548.        (cat
  1549.           "Copiar ficheros de ejemplo"
  1550.        )
  1551.     )
  1552.     (set #help_examples_copy
  1553.        (cat
  1554.           "\nAhora voy a copiar algunos ejemplos en el directorio 'Examples'."
  1555.        )
  1556.     )
  1557.     (set #text_setpatch
  1558.        (cat
  1559.           "Ahora procederé a copiar una nueva versión de 'SetPatch' (43.6) en su "
  1560.           "directorio 'c:' (este programa ha sido publicado por Amiga "
  1561.           "Technologies y corrige algunos errores de la biblioteca "
  1562.           "'mathieeesingbas.library' disponible con la Kickstart 3.1): "
  1563.           "la versión antigua 'c:SetPatch' será renombrada como 'c:SetPatch.old'."
  1564.        )
  1565.     )
  1566.     (set #help_setpatch
  1567.        (cat
  1568.           "\nPresione el botón 'Copiar'/'Copy' para instalar el nuevo 'SetPatch' "
  1569.           "y 'Saltar esta parte' para no hacerlo.\nPersonalmente, le recomiendo "
  1570.           "que lo instale, pero si al poner en marcha MetaView se produce un gurú, "
  1571.           "¡tendrá que instalarlo forzosamente!"
  1572.        )
  1573.     )
  1574.     (set #text_setpatch_copy
  1575.        (cat
  1576.           "Copiar nueva versión de 'SetPatch'"
  1577.        )
  1578.     )
  1579.     (set #text_tabs_copy
  1580.        (cat
  1581.           "Copiar elemento de la\ninterfaz gráfica 'tabs.gadget'"
  1582.        )
  1583.     )
  1584.     (set #text_variable
  1585.        (cat
  1586.           "¿Debería actualizar la variable de entorno 'MetaView.path'?"
  1587.        )
  1588.     )
  1589.     (set #help_variable
  1590.        (cat
  1591.           "\nLos guiones ARexx y el módulo "MetaView.datatype" utilizarán la variable de entorno para localizar el ejecutable."
  1592.        )
  1593.     )
  1594.     (set #text_envarc
  1595.        (cat
  1596.           "Crearé una variable en 'ENVARC:' que contiene el camino de acceso a MetaView"
  1597.        )
  1598.     )
  1599.     (set #help_envarc
  1600.        (cat
  1601.           "\nLa variable de entorno será almacenada en 'ENVARC:' de manera que sus contenidos se conservarán aunque se reinicie el sistema."
  1602.         )
  1603.     )
  1604.     (set #text_env
  1605.        (cat
  1606.           "Crearé una variable en 'ENV:' que contiene el camino de acceso a MetaView"
  1607.        )
  1608.     )
  1609.     (set #help_env
  1610.        (cat
  1611.           "\nLa variable de entorno será almacenada en 'ENV:' para que sea utilizada en la sesión actual."
  1612.        )
  1613.     )
  1614.     (set #text_keyfile
  1615.        (cat
  1616.           "Copiar fichero llave"
  1617.        )
  1618.     )
  1619.     (set #help_keyfile
  1620.        (cat
  1621.           "\nAhora copiaré el fichero llave (¡recuerde que éste es personal e instranferible!)."
  1622.        )
  1623.     )
  1624.     (set #text_register
  1625.        (cat
  1626.           "¡No olvide registrarse!\n\n"
  1627.           "Por favor, envíe\n20 dólares EE.UU. o\n30 marcos alemanes a:\n\n"
  1628.           "Henk Jonas\n"
  1629.           "Zionskirchstr. 28\n"
  1630.           "10119 Berlin\n"
  1631.           "Germany"
  1632.        )
  1633.     )
  1634.     (set #help_register
  1635.        (cat
  1636.           "\nConsulte los ficheros 'MetaView.readme', 'MetaView.doc' "
  1637.           "o 'MetaView.guide' para obtener (más) información de cómo registrarse."
  1638.        )
  1639.     )
  1640.     (set #text_thanx
  1641.        (cat
  1642.           "¡Gracias por registrar MetaView!"
  1643.        )
  1644.     )
  1645.   )
  1646. )
  1647. ;/**/
  1648.  
  1649. ;************************************************
  1650. ;
  1651. ; polnisch
  1652. ;
  1653. ;************************************************
  1654. ;/**/
  1655.  
  1656. (if (= #language-number 3)
  1657.   (
  1658.     (set #YES "Yes")
  1659.     (set #NO  "No")
  1660.     (set #text_copy "Copy")
  1661.     (set #text_skip "Skip")
  1662.     (set #text_update "Update")
  1663.  
  1664.     (set #text_present
  1665.        (cat
  1666.           "Henk Jonas\n present:\n\n MetaView\n\n"
  1667.           "This programm shows and converts gfx-metafile,\n"
  1668.           "uses the 'amigametaformat.library'\n and is SHAREWARE."
  1669.            ;"\n*Translated bla,bla,bla:*\n"
  1670.            ;"*Your Name - Your EMail*\n"
  1671.        )
  1672.     )
  1673.     (set #text_programm_update
  1674.        (cat
  1675.           "I found the MetaView drawer,\n"
  1676.           "leave the path in the parent directory\n"
  1677.           "of the MetaView drawer for\n"
  1678.           "updating an existing MetaView installation."
  1679.        )
  1680.     )
  1681.     (set #text_new
  1682.        (cat
  1683.           "Please choose the destination for MetaView.\n"
  1684.           "I will create a MetaView drawer there,\n"
  1685.           "if it does not exist."
  1686.        )
  1687.     )
  1688.     (set #text_drawer
  1689.        (cat
  1690.           "I am creating the drawer 'MetaView'."
  1691.        )
  1692.     )
  1693.     (set #text_library
  1694.        (cat
  1695.           "Now I will install the 'amigametaformat.library'."
  1696.        )
  1697.     )
  1698.     (set #help_library
  1699.        (cat
  1700.           "This library are needed for this programm.\n"
  1701.           "It is very importent to install this!"
  1702.        )
  1703.     )
  1704.     (set #text_driver
  1705.        (cat
  1706.           "Now I will install the different Outputdrivers for the 'amigametaformat.library'."
  1707.        )
  1708.     )
  1709.     (set #help_driver
  1710.        (cat
  1711.           "the options:\n"
  1712.           "* Strip       : the driver for all renderings, like screen, ILBM, printer etc.\n"
  1713.           "* AMF         : are for output as Amiga Metafile Format.\n"
  1714.           "* CGM         : are for output as Computer Graphics Metafile.\n"
  1715.           "* EPS         : are for output as Encapsulated PostScript.\n"
  1716.           "* GEM         : are for output as GEM Metafile.\n"
  1717.           "* WordWorth   : create ARexx scripts, for use in WordWorth.\n"
  1718.           "* DR2D        : are for output as DR2D (for PageStream, DrawStudio...)\n"
  1719.           "* HPGL        : are for output as HPGL (for Plotters)\n"
  1720.           "* AI          : are for output as AdobeIllustrator\n"
  1721.           "* JMF         : are for output as JavaMetaFile (for www-publishing)\n"
  1722.           "* WMF         : are for output as WindowsMetaFile\n"
  1723.           "* FIG         : are for output as XFIG file\n"
  1724.        )
  1725.     )
  1726.     (set #text_strip
  1727.        (cat
  1728.           "Now I will install the stripdriver for 'amigametaformat.library'."
  1729.        )
  1730.     )
  1731.     (set #help_strip
  1732.        (cat
  1733.           "strip for all renderings on screen, printer and ILBM-output\n"
  1734.        )
  1735.     )
  1736.     (set #text_file
  1737.        (cat
  1738.           "Now I will install the filedriver for 'amigametaformat.library'."
  1739.        )
  1740.     )
  1741.     (set #help_file
  1742.        (cat
  1743.           "file for saving as Amiga Meta Format Metafile\n"
  1744.        )
  1745.     )
  1746.     (set #text_cgm
  1747.        (cat
  1748.           "Now I will install the CGMdriver for 'amigametaformat.library'."
  1749.        )
  1750.     )
  1751.     (set #help_cgm
  1752.        (cat
  1753.           "CGM for saving as Computer Graphics Metafile\n"
  1754.        )
  1755.     )
  1756.     (set #text_eps
  1757.        (cat
  1758.           "Now I will install the EPSdriver for 'amigametaformat.library'."
  1759.        )
  1760.     )
  1761.     (set #help_eps
  1762.        (cat
  1763.           "EPS for saving as Encapsulated PostScript\n"
  1764.        )
  1765.     )
  1766.     (set #text_gem
  1767.        (cat
  1768.           "Now I will install the GEMdriver for 'amigametaformat.library'."
  1769.        )
  1770.     )
  1771.     (set #help_gem
  1772.        (cat
  1773.           "GEM for saving as GEM Metafile\n"
  1774.        )
  1775.     )
  1776.     (set #text_ww
  1777.        (cat
  1778.           "Now I will install the WordWorth-ARexx-driver for 'amigametaformat.library'."
  1779.        )
  1780.     )
  1781.     (set #help_ww
  1782.        (cat
  1783.           "WordWorth-ARexx-driver for creating WordWorth-ARexx-script\n"
  1784.        )
  1785.     )
  1786.     (set #text_dr2d
  1787.        (cat
  1788.           "Now I will install the DR2D-driver for 'amigametaformat.library'."
  1789.        )
  1790.     )
  1791.     (set #help_dr2d
  1792.        (cat
  1793.           "DR2D-driver for creating DR2D-Output\n"
  1794.        )
  1795.     )
  1796.     (set #text_hpgl
  1797.        (cat
  1798.           "Now I will install the HPGL-driver for 'amigametaformat.library'."
  1799.        )
  1800.     )
  1801.     (set #help_hpgl
  1802.        (cat
  1803.           "HPGL-driver for creating HPGL-Output\n"
  1804.        )
  1805.     )
  1806.     (set #text_ai
  1807.        (cat
  1808.           "Now I will install the AI-driver for 'amigametaformat.library'."
  1809.        )
  1810.     )
  1811.     (set #help_ai
  1812.        (cat
  1813.           "AI-driver for creating AI-Output\n"
  1814.        )
  1815.     )
  1816.     (set #text_jmf
  1817.        (cat
  1818.           "Now I will install the JMF-driver for 'amigametaformat.library'."
  1819.        )
  1820.     )
  1821.     (set #help_jmf
  1822.        (cat
  1823.           "JMF-driver for creating JMF-Output\n"
  1824.        )
  1825.     )
  1826.     (set #text_wmf
  1827.        (cat
  1828.           "Now I will install the WMF-driver for 'amigametaformat.library'."
  1829.        )
  1830.     )
  1831.     (set #help_wmf
  1832.        (cat
  1833.           "WMF-driver for creating WMF-Output\n"
  1834.        )
  1835.     )
  1836.     (set #text_fig
  1837.        (cat
  1838.           "Now I will install the FIG-driver for 'amigametaformat.library'."
  1839.        )
  1840.     )
  1841.     (set #help_fig
  1842.        (cat
  1843.           "FIG-driver for creating FIG-Output\n"
  1844.        )
  1845.     )
  1846.     (set #text_programm
  1847.        (cat
  1848.           "copy programm"
  1849.        )
  1850.     )
  1851.     (set #help_programm
  1852.        (cat
  1853.           "Now, I will copy the programm."
  1854.        )
  1855.     )
  1856.     (set #text_doc
  1857.        (cat
  1858.           "copy documentation"
  1859.        )
  1860.     )
  1861.     (set #help_doc
  1862.        (cat
  1863.           "Now, I will copy the documentation.\n"
  1864.           "This textfile is obsolete, use the guide instead."
  1865.        )
  1866.     )
  1867.     (set #text_guide
  1868.        (cat
  1869.           "Now I will copy the guide for MetaView.\n"
  1870.           "What is your favorite language?"
  1871.        )
  1872.     )
  1873.     (set #text_english_guide
  1874.        (cat
  1875.           "copy English MetaView.guide"
  1876.        )
  1877.     )
  1878.     (set #help_english_guide
  1879.        (cat
  1880.           "Now, I will copy the English MetaView.guide."
  1881.        )
  1882.     )
  1883.     (set #text_german_guide
  1884.        (cat
  1885.           "copy German MetaView.guide"
  1886.        )
  1887.     )
  1888.     (set #help_german_guide
  1889.        (cat
  1890.           "Now, I will copy the German MetaView.guide."
  1891.        )
  1892.     )
  1893.     (set #text_spanish_guide
  1894.        (cat
  1895.           "copy Spanish MetaView.guide"
  1896.        )
  1897.     )
  1898.     (set #help_spanish_guide
  1899.        (cat
  1900.           "Now, I will copy the Spanish MetaView.guide."
  1901.        )
  1902.     )
  1903.     (set #text_polish_guide
  1904.        (cat
  1905.           "copy Polish MetaView.guide"
  1906.        )
  1907.     )
  1908.     (set #help_polish_guide
  1909.        (cat
  1910.           "Now, I will copy the Polish MetaView.guide."
  1911.        )
  1912.     )
  1913.     (set #text_czech_guide
  1914.        (cat
  1915.           "copy Czech MetaView.guide"
  1916.        )
  1917.     )
  1918.     (set #help_czech_guide
  1919.        (cat
  1920.           "Now, I will copy the Czech MetaView.guide."
  1921.        )
  1922.     )
  1923.     (set #text_catalan_guide
  1924.        (cat
  1925.           "copy Catalan MetaView.guide"
  1926.        )
  1927.     )
  1928.     (set #help_catalan_guide
  1929.        (cat
  1930.           "Now, I will copy the Catalan MetaView.guide."
  1931.        )
  1932.     )
  1933.     (set #text_readme
  1934.        (cat
  1935.           "copy amigametaformat.readme"
  1936.        )
  1937.     )
  1938.     (set #help_readme
  1939.        (cat
  1940.           "Now, I will copy the amigametaformat.readme."
  1941.        )
  1942.     )
  1943.     (set #text_arexx
  1944.        (cat
  1945.           "copy ARexx-Examples"
  1946.        )
  1947.     )
  1948.     (set #help_arexx
  1949.        (cat
  1950.           "Now, I will copy some ARexx-Examples."
  1951.        )
  1952.     )
  1953.     (set #text_ds
  1954.        (cat
  1955.           "Do you have DrawStudio installed,\n"
  1956.           "and want to im- and export gfx\n"
  1957.           "with MetaView?"
  1958.        )
  1959.     )
  1960.     (set #help_ds
  1961.        (cat
  1962.           "I want to install two ARexx scripts for import and export\n"
  1963.           "graphics in DrawStudio with MetaView."
  1964.        )
  1965.     )
  1966.     (set #text_ds_path
  1967.        (cat
  1968.           "Please choose the DrawStudio ARexx scripts drawer."
  1969.        )
  1970.     )
  1971.     (set #help_ds_path
  1972.        (cat
  1973.           "I want to install two ARexx scripts for import and export\n"
  1974.           "graphics in DrawStudio with MetaView."
  1975.        )
  1976.     )
  1977.     (set #text_ds_import
  1978.        (cat
  1979.           "copying DrawStudio import script"
  1980.        )
  1981.     )
  1982.     (set #text_ds_export
  1983.        (cat
  1984.           "copying DrawStudio export script"
  1985.        )
  1986.     )
  1987.     (set #text_pgs
  1988.        (cat
  1989.           "Do you have PageStream 3.x installed,\n"
  1990.           "and want to import gfx with MetaView?"
  1991.        )
  1992.     )
  1993.     (set #help_pgs
  1994.        (cat
  1995.           "I want to install one ARexx script for import\n"
  1996.           "graphics in PageStream with MetaView."
  1997.        )
  1998.     )
  1999.     (set #text_pgs_path
  2000.        (cat
  2001.           "Please choose the PageStream ARexx scripts drawer."
  2002.        )
  2003.     )
  2004.     (set #help_pgs_path
  2005.        (cat
  2006.           "I want to install one ARexx script for import\n"
  2007.           "graphics in PageStream with MetaView."
  2008.        )
  2009.     )
  2010.     (set #text_pgs_import
  2011.        (cat
  2012.           "copying PageStream import script"
  2013.        )
  2014.     )
  2015.     (set #text_ww
  2016.        (cat
  2017.           "Do you have WordWorth installed,\n"
  2018.           "and want to import gfx with MetaView?"
  2019.        )
  2020.     )
  2021.     (set #help_ww
  2022.        (cat
  2023.           "I want to install one ARexx script for import\n"
  2024.           "graphics in WordWorth with MetaView."
  2025.        )
  2026.     )
  2027.     (set #text_ww_path
  2028.        (cat
  2029.           "Please choose the WordWorth ARexx scripts drawer."
  2030.        )
  2031.     )
  2032.     (set #help_ww_path
  2033.        (cat
  2034.           "I want to install one ARexx script for import\n"
  2035.           "graphics in WordWorth with MetaView."
  2036.        )
  2037.     )
  2038.     (set #text_ww_import
  2039.        (cat
  2040.           "copying WordWorth import script"
  2041.        )
  2042.     )
  2043.     (set #text_fw
  2044.        (cat
  2045.           "Do you have FinalWriter installed,\n"
  2046.           "and want to import gfx with MetaView?"
  2047.        )
  2048.     )
  2049.     (set #help_fw
  2050.        (cat
  2051.           "I want to install one ARexx script for import\n"
  2052.           "graphics in FinalWriter with MetaView."
  2053.        )
  2054.     )
  2055.     (set #text_fw_path
  2056.        (cat
  2057.           "Please choose the FinalWriter ARexx scripts drawer."
  2058.        )
  2059.     )
  2060.     (set #help_fw_path
  2061.        (cat
  2062.           "I want to install one ARexx script for import\n"
  2063.           "graphics in FinalWriter with MetaView."
  2064.        )
  2065.     )
  2066.     (set #text_fw_import
  2067.        (cat
  2068.           "copying FinalWriter import script"
  2069.        )
  2070.     )
  2071.     (set #text_examples
  2072.        (cat
  2073.           "Should I copy the example files?"
  2074.        )
  2075.     )
  2076.     (set #text_examples_copy
  2077.        (cat
  2078.           "copy Examples"
  2079.        )
  2080.     )
  2081.     (set #help_examples_copy
  2082.        (cat
  2083.           "Now, I want to copy some Examples."
  2084.        )
  2085.     )
  2086.     (set #text_setpatch
  2087.        (cat
  2088.           "I want to copy a new SetPatch (43.6) to your 'c:' directory.\n"
  2089.           "This Software are published from Amiga Technologie and\n"
  2090.           "fix also a bug on 'mathieeesingbas.library' in Kick 3.1.\n"
  2091.           "The old 'c:SetPatch' will renamed to 'c:SetPatch.old'."
  2092.        )
  2093.     )
  2094.     (set #help_setpatch
  2095.        (cat
  2096.           "Press 'Copy' to install the new SetPatch and 'Skip' for not install.\n"
  2097.           "You are advised to install this Patch.\n"
  2098.           "But if you get a GURU on MetaView-startup you must!"
  2099.        )
  2100.     )
  2101.     (set #text_setpatch_copy
  2102.        (cat
  2103.           "copy new SetPatch"
  2104.        )
  2105.     )
  2106.     (set #text_tabs_copy
  2107.        (cat
  2108.           "copy tabs.gadget"
  2109.        )
  2110.     )
  2111.     (set #text_variable
  2112.        (cat
  2113.           "Should I update the MetaView.path environment variable?"
  2114.        )
  2115.     )
  2116.     (set #help_variable
  2117.        (cat
  2118.           "The ARexxScripts and the MetaView.datatype will use the variable for locate the executable."
  2119.        )
  2120.     )
  2121.     (set #text_envarc
  2122.        (cat
  2123.           "Create ENVARC: variable with path of MetaView"
  2124.        )
  2125.     )
  2126.     (set #help_envarc
  2127.        (cat
  2128.           "The variable will be stored resetproof in ENVARC:."
  2129.         )
  2130.     )
  2131.     (set #text_env
  2132.        (cat
  2133.           "Create ENV: variable with path of MetaView"
  2134.        )
  2135.     )
  2136.     (set #help_env
  2137.        (cat
  2138.           "The variable will be stored for instant use in ENV:."
  2139.        )
  2140.     )
  2141.     (set #text_keyfile
  2142.        (cat
  2143.           "copy keyfile"
  2144.        )
  2145.     )
  2146.     (set #help_keyfile
  2147.        (cat
  2148.           "Now I copy the keyfile."
  2149.        )
  2150.     )
  2151.     (set #text_register
  2152.        (cat
  2153.           "Don`t forget to register!\n\n"
  2154.           "Please send $20 or 30,- DM to me:\n\n"
  2155.           "Henk Jonas\n"
  2156.           "Zionskirchstr. 28\n"
  2157.           "10119 Berlin\n"
  2158.           "Germany"
  2159.        )
  2160.     )
  2161.     (set #help_register
  2162.        (cat
  2163.           "Look at MetaView.readme, MetaView.doc "
  2164.           "or MetaView.guide for register."
  2165.        )
  2166.     )
  2167.     (set #text_thanx
  2168.        (cat
  2169.           "Thank you for registering MetaView!"
  2170.        )
  2171.     )
  2172.   )
  2173. )
  2174. ;/**/
  2175.  
  2176. ;************************************************
  2177. ;
  2178. ; tschechisch
  2179. ;
  2180. ;************************************************
  2181. ;/**/
  2182.  
  2183. (if (= #language-number 4)
  2184.   (
  2185.     (set #YES "Yes")
  2186.     (set #NO  "No")
  2187.     (set #text_copy "Copy")
  2188.     (set #text_skip "Skip")
  2189.     (set #text_update "Update")
  2190.  
  2191.     (set #text_present
  2192.        (cat
  2193.           "Henk Jonas\n present:\n\n MetaView\n\n"
  2194.           "This programm shows and converts gfx-metafile,\n"
  2195.           "uses the 'amigametaformat.library'\n and is SHAREWARE."
  2196.            ;"\n*Translated bla,bla,bla:*\n"
  2197.            ;"*Your Name - Your EMail*\n"
  2198.        )
  2199.     )
  2200.     (set #text_programm_update
  2201.        (cat
  2202.           "I found the MetaView drawer,\n"
  2203.           "leave the path in the parent directory\n"
  2204.           "of the MetaView drawer for\n"
  2205.           "updating an existing MetaView installation."
  2206.        )
  2207.     )
  2208.     (set #text_new
  2209.        (cat
  2210.           "Please choose the destination for MetaView.\n"
  2211.           "I will create a MetaView drawer there,\n"
  2212.           "if it does not exist."
  2213.        )
  2214.     )
  2215.     (set #text_drawer
  2216.        (cat
  2217.           "I am creating the drawer 'MetaView'."
  2218.        )
  2219.     )
  2220.     (set #text_library
  2221.        (cat
  2222.           "Now I will install the 'amigametaformat.library'."
  2223.        )
  2224.     )
  2225.     (set #help_library
  2226.        (cat
  2227.           "This library are needed for this programm.\n"
  2228.           "It is very importent to install this!"
  2229.        )
  2230.     )
  2231.     (set #text_driver
  2232.        (cat
  2233.           "Now I will install the different Outputdrivers for the 'amigametaformat.library'."
  2234.        )
  2235.     )
  2236.     (set #help_driver
  2237.        (cat
  2238.           "the options:\n"
  2239.           "* Strip       : the driver for all renderings, like screen, ILBM, printer etc.\n"
  2240.           "* AMF         : are for output as Amiga Metafile Format.\n"
  2241.           "* CGM         : are for output as Computer Graphics Metafile.\n"
  2242.           "* EPS         : are for output as Encapsulated PostScript.\n"
  2243.           "* GEM         : are for output as GEM Metafile.\n"
  2244.           "* WordWorth   : create ARexx scripts, for use in WordWorth.\n"
  2245.           "* DR2D        : are for output as DR2D (for PageStream, DrawStudio...)\n"
  2246.           "* HPGL        : are for output as HPGL (for Plotters)\n"
  2247.           "* AI          : are for output as AdobeIllustrator\n"
  2248.           "* JMF         : are for output as JavaMetaFile (for www-publishing)\n"
  2249.           "* WMF         : are for output as WindowsMetaFile\n"
  2250.           "* FIG         : are for output as XFIG file\n"
  2251.        )
  2252.     )
  2253.     (set #text_strip
  2254.        (cat
  2255.           "Now I will install the stripdriver for 'amigametaformat.library'."
  2256.        )
  2257.     )
  2258.     (set #help_strip
  2259.        (cat
  2260.           "strip for all renderings on screen, printer and ILBM-output\n"
  2261.        )
  2262.     )
  2263.     (set #text_file
  2264.        (cat
  2265.           "Now I will install the filedriver for 'amigametaformat.library'."
  2266.        )
  2267.     )
  2268.     (set #help_file
  2269.        (cat
  2270.           "file for saving as Amiga Meta Format Metafile\n"
  2271.        )
  2272.     )
  2273.     (set #text_cgm
  2274.        (cat
  2275.           "Now I will install the CGMdriver for 'amigametaformat.library'."
  2276.        )
  2277.     )
  2278.     (set #help_cgm
  2279.        (cat
  2280.           "CGM for saving as Computer Graphics Metafile\n"
  2281.        )
  2282.     )
  2283.     (set #text_eps
  2284.        (cat
  2285.           "Now I will install the EPSdriver for 'amigametaformat.library'."
  2286.        )
  2287.     )
  2288.     (set #help_eps
  2289.        (cat
  2290.           "EPS for saving as Encapsulated PostScript\n"
  2291.        )
  2292.     )
  2293.     (set #text_gem
  2294.        (cat
  2295.           "Now I will install the GEMdriver for 'amigametaformat.library'."
  2296.        )
  2297.     )
  2298.     (set #help_gem
  2299.        (cat
  2300.           "GEM for saving as GEM Metafile\n"
  2301.        )
  2302.     )
  2303.     (set #text_ww
  2304.        (cat
  2305.           "Now I will install the WordWorth-ARexx-driver for 'amigametaformat.library'."
  2306.        )
  2307.     )
  2308.     (set #help_ww
  2309.        (cat
  2310.           "WordWorth-ARexx-driver for creating WordWorth-ARexx-script\n"
  2311.        )
  2312.     )
  2313.     (set #text_dr2d
  2314.        (cat
  2315.           "Now I will install the DR2D-driver for 'amigametaformat.library'."
  2316.        )
  2317.     )
  2318.     (set #help_dr2d
  2319.        (cat
  2320.           "DR2D-driver for creating DR2D-Output\n"
  2321.        )
  2322.     )
  2323.     (set #text_hpgl
  2324.        (cat
  2325.           "Now I will install the HPGL-driver for 'amigametaformat.library'."
  2326.        )
  2327.     )
  2328.     (set #help_hpgl
  2329.        (cat
  2330.           "HPGL-driver for creating HPGL-Output\n"
  2331.        )
  2332.     )
  2333.     (set #text_ai
  2334.        (cat
  2335.           "Now I will install the AI-driver for 'amigametaformat.library'."
  2336.        )
  2337.     )
  2338.     (set #help_ai
  2339.        (cat
  2340.           "AI-driver for creating AI-Output\n"
  2341.        )
  2342.     )
  2343.     (set #text_jmf
  2344.        (cat
  2345.           "Now I will install the JMF-driver for 'amigametaformat.library'."
  2346.        )
  2347.     )
  2348.     (set #help_jmf
  2349.        (cat
  2350.           "JMF-driver for creating JMF-Output\n"
  2351.        )
  2352.     )
  2353.     (set #text_wmf
  2354.        (cat
  2355.           "Now I will install the WMF-driver for 'amigametaformat.library'."
  2356.        )
  2357.     )
  2358.     (set #help_wmf
  2359.        (cat
  2360.           "WMF-driver for creating WMF-Output\n"
  2361.        )
  2362.     )
  2363.     (set #text_fig
  2364.        (cat
  2365.           "Now I will install the FIG-driver for 'amigametaformat.library'."
  2366.        )
  2367.     )
  2368.     (set #help_fig
  2369.        (cat
  2370.           "FIG-driver for creating FIG-Output\n"
  2371.        )
  2372.     )
  2373.     (set #text_programm
  2374.        (cat
  2375.           "copy programm"
  2376.        )
  2377.     )
  2378.     (set #help_programm
  2379.        (cat
  2380.           "Now, I will copy the programm."
  2381.        )
  2382.     )
  2383.     (set #text_doc
  2384.        (cat
  2385.           "copy documentation"
  2386.        )
  2387.     )
  2388.     (set #help_doc
  2389.        (cat
  2390.           "Now, I will copy the documentation.\n"
  2391.           "This textfile is obsolete, use the guide instead."
  2392.        )
  2393.     )
  2394.     (set #text_guide
  2395.        (cat
  2396.           "Now I will copy the guide for MetaView.\n"
  2397.           "What is your favorite language?"
  2398.        )
  2399.     )
  2400.     (set #text_english_guide
  2401.        (cat
  2402.           "copy English MetaView.guide"
  2403.        )
  2404.     )
  2405.     (set #help_english_guide
  2406.        (cat
  2407.           "Now, I will copy the English MetaView.guide."
  2408.        )
  2409.     )
  2410.     (set #text_german_guide
  2411.        (cat
  2412.           "copy German MetaView.guide"
  2413.        )
  2414.     )
  2415.     (set #help_german_guide
  2416.        (cat
  2417.           "Now, I will copy the German MetaView.guide."
  2418.        )
  2419.     )
  2420.     (set #text_spanish_guide
  2421.        (cat
  2422.           "copy Spanish MetaView.guide"
  2423.        )
  2424.     )
  2425.     (set #help_spanish_guide
  2426.        (cat
  2427.           "Now, I will copy the Spanish MetaView.guide."
  2428.        )
  2429.     )
  2430.     (set #text_polish_guide
  2431.        (cat
  2432.           "copy Polish MetaView.guide"
  2433.        )
  2434.     )
  2435.     (set #help_polish_guide
  2436.        (cat
  2437.           "Now, I will copy the Polish MetaView.guide."
  2438.        )
  2439.     )
  2440.     (set #text_czech_guide
  2441.        (cat
  2442.           "copy Czech MetaView.guide"
  2443.        )
  2444.     )
  2445.     (set #help_czech_guide
  2446.        (cat
  2447.           "Now, I will copy the Czech MetaView.guide."
  2448.        )
  2449.     )
  2450.     (set #text_catalan_guide
  2451.        (cat
  2452.           "copy Catalan MetaView.guide"
  2453.        )
  2454.     )
  2455.     (set #help_catalan_guide
  2456.        (cat
  2457.           "Now, I will copy the Catalan MetaView.guide."
  2458.        )
  2459.     )
  2460.     (set #text_readme
  2461.        (cat
  2462.           "copy amigametaformat.readme"
  2463.        )
  2464.     )
  2465.     (set #help_readme
  2466.        (cat
  2467.           "Now, I will copy the amigametaformat.readme."
  2468.        )
  2469.     )
  2470.     (set #text_arexx
  2471.        (cat
  2472.           "copy ARexx-Examples"
  2473.        )
  2474.     )
  2475.     (set #help_arexx
  2476.        (cat
  2477.           "Now, I will copy some ARexx-Examples."
  2478.        )
  2479.     )
  2480.     (set #text_ds
  2481.        (cat
  2482.           "Do you have DrawStudio installed,\n"
  2483.           "and want to im- and export gfx\n"
  2484.           "with MetaView?"
  2485.        )
  2486.     )
  2487.     (set #help_ds
  2488.        (cat
  2489.           "I want to install two ARexx scripts for import and export\n"
  2490.           "graphics in DrawStudio with MetaView."
  2491.        )
  2492.     )
  2493.     (set #text_ds_path
  2494.        (cat
  2495.           "Please choose the DrawStudio ARexx scripts drawer."
  2496.        )
  2497.     )
  2498.     (set #help_ds_path
  2499.        (cat
  2500.           "I want to install two ARexx scripts for import and export\n"
  2501.           "graphics in DrawStudio with MetaView."
  2502.        )
  2503.     )
  2504.     (set #text_ds_import
  2505.        (cat
  2506.           "copying DrawStudio import script"
  2507.        )
  2508.     )
  2509.     (set #text_ds_export
  2510.        (cat
  2511.           "copying DrawStudio export script"
  2512.        )
  2513.     )
  2514.     (set #text_pgs
  2515.        (cat
  2516.           "Do you have PageStream 3.x installed,\n"
  2517.           "and want to import gfx with MetaView?"
  2518.        )
  2519.     )
  2520.     (set #help_pgs
  2521.        (cat
  2522.           "I want to install one ARexx script for import\n"
  2523.           "graphics in PageStream with MetaView."
  2524.        )
  2525.     )
  2526.     (set #text_pgs_path
  2527.        (cat
  2528.           "Please choose the PageStream ARexx scripts drawer."
  2529.        )
  2530.     )
  2531.     (set #help_pgs_path
  2532.        (cat
  2533.           "I want to install one ARexx script for import\n"
  2534.           "graphics in PageStream with MetaView."
  2535.        )
  2536.     )
  2537.     (set #text_pgs_import
  2538.        (cat
  2539.           "copying PageStream import script"
  2540.        )
  2541.     )
  2542.     (set #text_ww
  2543.        (cat
  2544.           "Do you have WordWorth installed,\n"
  2545.           "and want to import gfx with MetaView?"
  2546.        )
  2547.     )
  2548.     (set #help_ww
  2549.        (cat
  2550.           "I want to install one ARexx script for import\n"
  2551.           "graphics in WordWorth with MetaView."
  2552.        )
  2553.     )
  2554.     (set #text_ww_path
  2555.        (cat
  2556.           "Please choose the WordWorth ARexx scripts drawer."
  2557.        )
  2558.     )
  2559.     (set #help_ww_path
  2560.        (cat
  2561.           "I want to install one ARexx script for import\n"
  2562.           "graphics in WordWorth with MetaView."
  2563.        )
  2564.     )
  2565.     (set #text_ww_import
  2566.        (cat
  2567.           "copying WordWorth import script"
  2568.        )
  2569.     )
  2570.     (set #text_fw
  2571.        (cat
  2572.           "Do you have FinalWriter installed,\n"
  2573.           "and want to import gfx with MetaView?"
  2574.        )
  2575.     )
  2576.     (set #help_fw
  2577.        (cat
  2578.           "I want to install one ARexx script for import\n"
  2579.           "graphics in FinalWriter with MetaView."
  2580.        )
  2581.     )
  2582.     (set #text_fw_path
  2583.        (cat
  2584.           "Please choose the FinalWriter ARexx scripts drawer."
  2585.        )
  2586.     )
  2587.     (set #help_fw_path
  2588.        (cat
  2589.           "I want to install one ARexx script for import\n"
  2590.           "graphics in FinalWriter with MetaView."
  2591.        )
  2592.     )
  2593.     (set #text_fw_import
  2594.        (cat
  2595.           "copying FinalWriter import script"
  2596.        )
  2597.     )
  2598.     (set #text_examples
  2599.        (cat
  2600.           "Should I copy the example files?"
  2601.        )
  2602.     )
  2603.     (set #text_examples_copy
  2604.        (cat
  2605.           "copy Examples"
  2606.        )
  2607.     )
  2608.     (set #help_examples_copy
  2609.        (cat
  2610.           "Now, I want to copy some Examples."
  2611.        )
  2612.     )
  2613.     (set #text_setpatch
  2614.        (cat
  2615.           "I want to copy a new SetPatch (43.6) to your 'c:' directory.\n"
  2616.           "This Software are published from Amiga Technologie and\n"
  2617.           "fix also a bug on 'mathieeesingbas.library' in Kick 3.1.\n"
  2618.           "The old 'c:SetPatch' will renamed to 'c:SetPatch.old'."
  2619.        )
  2620.     )
  2621.     (set #help_setpatch
  2622.        (cat
  2623.           "Press 'Copy' to install the new SetPatch and 'Skip' for not install.\n"
  2624.           "You are advised to install this Patch.\n"
  2625.           "But if you get a GURU on MetaView-startup you must!"
  2626.        )
  2627.     )
  2628.     (set #text_setpatch_copy
  2629.        (cat
  2630.           "copy new SetPatch"
  2631.        )
  2632.     )
  2633.     (set #text_tabs_copy
  2634.        (cat
  2635.           "copy tabs.gadget"
  2636.        )
  2637.     )
  2638.     (set #text_variable
  2639.        (cat
  2640.           "Should I update the MetaView.path environment variable?"
  2641.        )
  2642.     )
  2643.     (set #help_variable
  2644.        (cat
  2645.           "The ARexxScripts and the MetaView.datatype will use the variable for locate the executable."
  2646.        )
  2647.     )
  2648.     (set #text_envarc
  2649.        (cat
  2650.           "Create ENVARC: variable with path of MetaView"
  2651.        )
  2652.     )
  2653.     (set #help_envarc
  2654.        (cat
  2655.           "The variable will be stored resetproof in ENVARC:."
  2656.         )
  2657.     )
  2658.     (set #text_env
  2659.        (cat
  2660.           "Create ENV: variable with path of MetaView"
  2661.        )
  2662.     )
  2663.     (set #help_env
  2664.        (cat
  2665.           "The variable will be stored for instant use in ENV:."
  2666.        )
  2667.     )
  2668.     (set #text_keyfile
  2669.        (cat
  2670.           "copy keyfile"
  2671.        )
  2672.     )
  2673.     (set #help_keyfile
  2674.        (cat
  2675.           "Now I copy the keyfile."
  2676.        )
  2677.     )
  2678.     (set #text_register
  2679.        (cat
  2680.           "Don`t forget to register!\n\n"
  2681.           "Please send $20 or 30,- DM to me:\n\n"
  2682.           "Henk Jonas\n"
  2683.           "Zionskirchstr. 28\n"
  2684.           "10119 Berlin\n"
  2685.           "Germany"
  2686.        )
  2687.     )
  2688.     (set #help_register
  2689.        (cat
  2690.           "Look at MetaView.readme, MetaView.doc "
  2691.           "or MetaView.guide for register."
  2692.        )
  2693.     )
  2694.     (set #text_thanx
  2695.        (cat
  2696.           "Thank you for registering MetaView!"
  2697.        )
  2698.     )
  2699.   )
  2700. )
  2701. ;/**/
  2702.  
  2703. ;************************************************
  2704. ;
  2705. ; catalanisch
  2706. ;
  2707. ;************************************************
  2708. ;/**/
  2709.  
  2710. (if (= #language-number 4)
  2711.   (
  2712.     (set #YES "Yes")
  2713.     (set #NO  "No")
  2714.     (set #text_copy "Copy")
  2715.     (set #text_skip "Skip")
  2716.     (set #text_update "Update")
  2717.  
  2718.     (set #text_present
  2719.        (cat
  2720.           "Henk Jonas\n present:\n\n MetaView\n\n"
  2721.           "This programm shows and converts gfx-metafile,\n"
  2722.           "uses the 'amigametaformat.library'\n and is SHAREWARE."
  2723.            ;"\n*Translated bla,bla,bla:*\n"
  2724.            ;"*Your Name - Your EMail*\n"
  2725.        )
  2726.     )
  2727.     (set #text_programm_update
  2728.        (cat
  2729.           "I found the MetaView drawer,\n"
  2730.           "leave the path in the parent directory\n"
  2731.           "of the MetaView drawer for\n"
  2732.           "updating an existing MetaView installation."
  2733.        )
  2734.     )
  2735.     (set #text_new
  2736.        (cat
  2737.           "Please choose the destination for MetaView.\n"
  2738.           "I will create a MetaView drawer there,\n"
  2739.           "if it does not exist."
  2740.        )
  2741.     )
  2742.     (set #text_drawer
  2743.        (cat
  2744.           "I am creating the drawer 'MetaView'."
  2745.        )
  2746.     )
  2747.     (set #text_library
  2748.        (cat
  2749.           "Now I will install the 'amigametaformat.library'."
  2750.        )
  2751.     )
  2752.     (set #help_library
  2753.        (cat
  2754.           "This library are needed for this programm.\n"
  2755.           "It is very importent to install this!"
  2756.        )
  2757.     )
  2758.     (set #text_driver
  2759.        (cat
  2760.           "Now I will install the different Outputdrivers for the 'amigametaformat.library'."
  2761.        )
  2762.     )
  2763.     (set #help_driver
  2764.        (cat
  2765.           "the options:\n"
  2766.           "* Strip       : the driver for all renderings, like screen, ILBM, printer etc.\n"
  2767.           "* AMF         : are for output as Amiga Metafile Format.\n"
  2768.           "* CGM         : are for output as Computer Graphics Metafile.\n"
  2769.           "* EPS         : are for output as Encapsulated PostScript.\n"
  2770.           "* GEM         : are for output as GEM Metafile.\n"
  2771.           "* WordWorth   : create ARexx scripts, for use in WordWorth.\n"
  2772.           "* DR2D        : are for output as DR2D (for PageStream, DrawStudio...)\n"
  2773.           "* HPGL        : are for output as HPGL (for Plotters)\n"
  2774.           "* AI          : are for output as AdobeIllustrator\n"
  2775.           "* JMF         : are for output as JavaMetaFile (for www-publishing)\n"
  2776.           "* WMF         : are for output as WindowsMetaFile\n"
  2777.           "* FIG         : are for output as XFIG file\n"
  2778.        )
  2779.     )
  2780.     (set #text_strip
  2781.        (cat
  2782.           "Now I will install the stripdriver for 'amigametaformat.library'."
  2783.        )
  2784.     )
  2785.     (set #help_strip
  2786.        (cat
  2787.           "strip for all renderings on screen, printer and ILBM-output\n"
  2788.        )
  2789.     )
  2790.     (set #text_file
  2791.        (cat
  2792.           "Now I will install the filedriver for 'amigametaformat.library'."
  2793.        )
  2794.     )
  2795.     (set #help_file
  2796.        (cat
  2797.           "file for saving as Amiga Meta Format Metafile\n"
  2798.        )
  2799.     )
  2800.     (set #text_cgm
  2801.        (cat
  2802.           "Now I will install the CGMdriver for 'amigametaformat.library'."
  2803.        )
  2804.     )
  2805.     (set #help_cgm
  2806.        (cat
  2807.           "CGM for saving as Computer Graphics Metafile\n"
  2808.        )
  2809.     )
  2810.     (set #text_eps
  2811.        (cat
  2812.           "Now I will install the EPSdriver for 'amigametaformat.library'."
  2813.        )
  2814.     )
  2815.     (set #help_eps
  2816.        (cat
  2817.           "EPS for saving as Encapsulated PostScript\n"
  2818.        )
  2819.     )
  2820.     (set #text_gem
  2821.        (cat
  2822.           "Now I will install the GEMdriver for 'amigametaformat.library'."
  2823.        )
  2824.     )
  2825.     (set #help_gem
  2826.        (cat
  2827.           "GEM for saving as GEM Metafile\n"
  2828.        )
  2829.     )
  2830.     (set #text_ww
  2831.        (cat
  2832.           "Now I will install the WordWorth-ARexx-driver for 'amigametaformat.library'."
  2833.        )
  2834.     )
  2835.     (set #help_ww
  2836.        (cat
  2837.           "WordWorth-ARexx-driver for creating WordWorth-ARexx-script\n"
  2838.        )
  2839.     )
  2840.     (set #text_dr2d
  2841.        (cat
  2842.           "Now I will install the DR2D-driver for 'amigametaformat.library'."
  2843.        )
  2844.     )
  2845.     (set #help_dr2d
  2846.        (cat
  2847.           "DR2D-driver for creating DR2D-Output\n"
  2848.        )
  2849.     )
  2850.     (set #text_hpgl
  2851.        (cat
  2852.           "Now I will install the HPGL-driver for 'amigametaformat.library'."
  2853.        )
  2854.     )
  2855.     (set #help_hpgl
  2856.        (cat
  2857.           "HPGL-driver for creating HPGL-Output\n"
  2858.        )
  2859.     )
  2860.     (set #text_ai
  2861.        (cat
  2862.           "Now I will install the AI-driver for 'amigametaformat.library'."
  2863.        )
  2864.     )
  2865.     (set #help_ai
  2866.        (cat
  2867.           "AI-driver for creating AI-Output\n"
  2868.        )
  2869.     )
  2870.     (set #text_jmf
  2871.        (cat
  2872.           "Now I will install the JMF-driver for 'amigametaformat.library'."
  2873.        )
  2874.     )
  2875.     (set #help_jmf
  2876.        (cat
  2877.           "JMF-driver for creating JMF-Output\n"
  2878.        )
  2879.     )
  2880.     (set #text_wmf
  2881.        (cat
  2882.           "Now I will install the WMF-driver for 'amigametaformat.library'."
  2883.        )
  2884.     )
  2885.     (set #help_wmf
  2886.        (cat
  2887.           "WMF-driver for creating WMF-Output\n"
  2888.        )
  2889.     )
  2890.     (set #text_fig
  2891.        (cat
  2892.           "Now I will install the FIG-driver for 'amigametaformat.library'."
  2893.        )
  2894.     )
  2895.     (set #help_fig
  2896.        (cat
  2897.           "FIG-driver for creating FIG-Output\n"
  2898.        )
  2899.     )
  2900.     (set #text_programm
  2901.        (cat
  2902.           "copy programm"
  2903.        )
  2904.     )
  2905.     (set #help_programm
  2906.        (cat
  2907.           "Now, I will copy the programm."
  2908.        )
  2909.     )
  2910.     (set #text_doc
  2911.        (cat
  2912.           "copy documentation"
  2913.        )
  2914.     )
  2915.     (set #help_doc
  2916.        (cat
  2917.           "Now, I will copy the documentation.\n"
  2918.           "This textfile is obsolete, use the guide instead."
  2919.        )
  2920.     )
  2921.     (set #text_guide
  2922.        (cat
  2923.           "Now I will copy the guide for MetaView.\n"
  2924.           "What is your favorite language?"
  2925.        )
  2926.     )
  2927.     (set #text_english_guide
  2928.        (cat
  2929.           "copy English MetaView.guide"
  2930.        )
  2931.     )
  2932.     (set #help_english_guide
  2933.        (cat
  2934.           "Now, I will copy the English MetaView.guide."
  2935.        )
  2936.     )
  2937.     (set #text_german_guide
  2938.        (cat
  2939.           "copy German MetaView.guide"
  2940.        )
  2941.     )
  2942.     (set #help_german_guide
  2943.        (cat
  2944.           "Now, I will copy the German MetaView.guide."
  2945.        )
  2946.     )
  2947.     (set #text_spanish_guide
  2948.        (cat
  2949.           "copy Spanish MetaView.guide"
  2950.        )
  2951.     )
  2952.     (set #help_spanish_guide
  2953.        (cat
  2954.           "Now, I will copy the Spanish MetaView.guide."
  2955.        )
  2956.     )
  2957.     (set #text_polish_guide
  2958.        (cat
  2959.           "copy Polish MetaView.guide"
  2960.        )
  2961.     )
  2962.     (set #help_polish_guide
  2963.        (cat
  2964.           "Now, I will copy the Polish MetaView.guide."
  2965.        )
  2966.     )
  2967.     (set #text_czech_guide
  2968.        (cat
  2969.           "copy Czech MetaView.guide"
  2970.        )
  2971.     )
  2972.     (set #help_czech_guide
  2973.        (cat
  2974.           "Now, I will copy the Czech MetaView.guide."
  2975.        )
  2976.     )
  2977.     (set #text_catalan_guide
  2978.        (cat
  2979.           "copy Catalan MetaView.guide"
  2980.        )
  2981.     )
  2982.     (set #help_catalan_guide
  2983.        (cat
  2984.           "Now, I will copy the Catalan MetaView.guide."
  2985.        )
  2986.     )
  2987.     (set #text_readme
  2988.        (cat
  2989.           "copy amigametaformat.readme"
  2990.        )
  2991.     )
  2992.     (set #help_readme
  2993.        (cat
  2994.           "Now, I will copy the amigametaformat.readme."
  2995.        )
  2996.     )
  2997.     (set #text_arexx
  2998.        (cat
  2999.           "copy ARexx-Examples"
  3000.        )
  3001.     )
  3002.     (set #help_arexx
  3003.        (cat
  3004.           "Now, I will copy some ARexx-Examples."
  3005.        )
  3006.     )
  3007.     (set #text_ds
  3008.        (cat
  3009.           "Do you have DrawStudio installed,\n"
  3010.           "and want to im- and export gfx\n"
  3011.           "with MetaView?"
  3012.        )
  3013.     )
  3014.     (set #help_ds
  3015.        (cat
  3016.           "I want to install two ARexx scripts for import and export\n"
  3017.           "graphics in DrawStudio with MetaView."
  3018.        )
  3019.     )
  3020.     (set #text_ds_path
  3021.        (cat
  3022.           "Please choose the DrawStudio ARexx scripts drawer."
  3023.        )
  3024.     )
  3025.     (set #help_ds_path
  3026.        (cat
  3027.           "I want to install two ARexx scripts for import and export\n"
  3028.           "graphics in DrawStudio with MetaView."
  3029.        )
  3030.     )
  3031.     (set #text_ds_import
  3032.        (cat
  3033.           "copying DrawStudio import script"
  3034.        )
  3035.     )
  3036.     (set #text_ds_export
  3037.        (cat
  3038.           "copying DrawStudio export script"
  3039.        )
  3040.     )
  3041.     (set #text_pgs
  3042.        (cat
  3043.           "Do you have PageStream 3.x installed,\n"
  3044.           "and want to import gfx with MetaView?"
  3045.        )
  3046.     )
  3047.     (set #help_pgs
  3048.        (cat
  3049.           "I want to install one ARexx script for import\n"
  3050.           "graphics in PageStream with MetaView."
  3051.        )
  3052.     )
  3053.     (set #text_pgs_path
  3054.        (cat
  3055.           "Please choose the PageStream ARexx scripts drawer."
  3056.        )
  3057.     )
  3058.     (set #help_pgs_path
  3059.        (cat
  3060.           "I want to install one ARexx script for import\n"
  3061.           "graphics in PageStream with MetaView."
  3062.        )
  3063.     )
  3064.     (set #text_pgs_import
  3065.        (cat
  3066.           "copying PageStream import script"
  3067.        )
  3068.     )
  3069.     (set #text_ww
  3070.        (cat
  3071.           "Do you have WordWorth installed,\n"
  3072.           "and want to import gfx with MetaView?"
  3073.        )
  3074.     )
  3075.     (set #help_ww
  3076.        (cat
  3077.           "I want to install one ARexx script for import\n"
  3078.           "graphics in WordWorth with MetaView."
  3079.        )
  3080.     )
  3081.     (set #text_ww_path
  3082.        (cat
  3083.           "Please choose the WordWorth ARexx scripts drawer."
  3084.        )
  3085.     )
  3086.     (set #help_ww_path
  3087.        (cat
  3088.           "I want to install one ARexx script for import\n"
  3089.           "graphics in WordWorth with MetaView."
  3090.        )
  3091.     )
  3092.     (set #text_ww_import
  3093.        (cat
  3094.           "copying WordWorth import script"
  3095.        )
  3096.     )
  3097.     (set #text_fw
  3098.        (cat
  3099.           "Do you have FinalWriter installed,\n"
  3100.           "and want to import gfx with MetaView?"
  3101.        )
  3102.     )
  3103.     (set #help_fw
  3104.        (cat
  3105.           "I want to install one ARexx script for import\n"
  3106.           "graphics in FinalWriter with MetaView."
  3107.        )
  3108.     )
  3109.     (set #text_fw_path
  3110.        (cat
  3111.           "Please choose the FinalWriter ARexx scripts drawer."
  3112.        )
  3113.     )
  3114.     (set #help_fw_path
  3115.        (cat
  3116.           "I want to install one ARexx script for import\n"
  3117.           "graphics in FinalWriter with MetaView."
  3118.        )
  3119.     )
  3120.     (set #text_fw_import
  3121.        (cat
  3122.           "copying FinalWriter import script"
  3123.        )
  3124.     )
  3125.     (set #text_examples
  3126.        (cat
  3127.           "Should I copy the example files?"
  3128.        )
  3129.     )
  3130.     (set #text_examples_copy
  3131.        (cat
  3132.           "copy Examples"
  3133.        )
  3134.     )
  3135.     (set #help_examples_copy
  3136.        (cat
  3137.           "Now, I want to copy some Examples."
  3138.        )
  3139.     )
  3140.     (set #text_setpatch
  3141.        (cat
  3142.           "I want to copy a new SetPatch (43.6) to your 'c:' directory.\n"
  3143.           "This Software are published from Amiga Technologie and\n"
  3144.           "fix also a bug on 'mathieeesingbas.library' in Kick 3.1.\n"
  3145.           "The old 'c:SetPatch' will renamed to 'c:SetPatch.old'."
  3146.        )
  3147.     )
  3148.     (set #help_setpatch
  3149.        (cat
  3150.           "Press 'Copy' to install the new SetPatch and 'Skip' for not install.\n"
  3151.           "You are advised to install this Patch.\n"
  3152.           "But if you get a GURU on MetaView-startup you must!"
  3153.        )
  3154.     )
  3155.     (set #text_setpatch_copy
  3156.        (cat
  3157.           "copy new SetPatch"
  3158.        )
  3159.     )
  3160.     (set #text_tabs_copy
  3161.        (cat
  3162.           "copy tabs.gadget"
  3163.        )
  3164.     )
  3165.     (set #text_variable
  3166.        (cat
  3167.           "Should I update the MetaView.path environment variable?"
  3168.        )
  3169.     )
  3170.     (set #help_variable
  3171.        (cat
  3172.           "The ARexxScripts and the MetaView.datatype will use the variable for locate the executable."
  3173.        )
  3174.     )
  3175.     (set #text_envarc
  3176.        (cat
  3177.           "Create ENVARC: variable with path of MetaView"
  3178.        )
  3179.     )
  3180.     (set #help_envarc
  3181.        (cat
  3182.           "The variable will be stored resetproof in ENVARC:."
  3183.         )
  3184.     )
  3185.     (set #text_env
  3186.        (cat
  3187.           "Create ENV: variable with path of MetaView"
  3188.        )
  3189.     )
  3190.     (set #help_env
  3191.        (cat
  3192.           "The variable will be stored for instant use in ENV:."
  3193.        )
  3194.     )
  3195.     (set #text_keyfile
  3196.        (cat
  3197.           "copy keyfile"
  3198.        )
  3199.     )
  3200.     (set #help_keyfile
  3201.        (cat
  3202.           "Now I copy the keyfile."
  3203.        )
  3204.     )
  3205.     (set #text_register
  3206.        (cat
  3207.           "Don`t forget to register!\n\n"
  3208.           "Please send $20 or 30,- DM to me:\n\n"
  3209.           "Henk Jonas\n"
  3210.           "Zionskirchstr. 28\n"
  3211.           "10119 Berlin\n"
  3212.           "Germany"
  3213.        )
  3214.     )
  3215.     (set #help_register
  3216.        (cat
  3217.           "Look at MetaView.readme, MetaView.doc "
  3218.           "or MetaView.guide for register."
  3219.        )
  3220.     )
  3221.     (set #text_thanx
  3222.        (cat
  3223.           "Thank you for registering MetaView!"
  3224.        )
  3225.     )
  3226.   )
  3227. )
  3228. ;/**/
  3229.  
  3230. ;************************************************
  3231. ;
  3232. ; now starts the installation
  3233. ;
  3234. ;************************************************
  3235.  
  3236. (message #text_present)
  3237. (set #user-level @user-level)
  3238. (set #defaultdir "ram:")
  3239. (if (= 1 (exists ("envarc:MetaView.path")))
  3240.   (
  3241.     (set #defaultdir (expandpath (tackon (pathonly (getenv "MetaView.path")) "/")))
  3242.     (set @parentdir
  3243.       (askdir
  3244.         (prompt #text_programm_update)
  3245.         (help @askdir-help)
  3246.         (default #defaultdir)
  3247.       )
  3248.     )
  3249.   )
  3250.   (
  3251.     (user 2)
  3252.     (set @parentdir
  3253.       (askdir
  3254.         (prompt #text_new)
  3255.         (help @askdir-help)
  3256.         (default #defaultdir)
  3257.       )
  3258.     )
  3259.     (user #user-level)
  3260.   )
  3261. )
  3262.  
  3263. (set @default-dest (tackon @parentdir "MetaView"))
  3264.  
  3265. (makedir @default-dest
  3266.   (prompt #text_drawer)
  3267.   (help @makedir-help)
  3268.   (infos)
  3269. )
  3270.  
  3271. (complete 5)
  3272.  
  3273. (copylib 
  3274.   (prompt #text_library)
  3275.   (source (tackon @sourcedir "libs/amigametaformat.library"))
  3276.   (dest  "libs:")
  3277.   (optional "nofail" "force" "askuser")
  3278.   (help #help_library)
  3279. )
  3280.  
  3281. (complete 10)
  3282.  
  3283. (set #driver
  3284.   (askoptions
  3285.     (prompt #text_driver)
  3286.     (choices "pStrip" "AMF" "CGM" "EPS" "GEM" "WordWorth" "DR2D" "HPGL" "AI" "JMF" "WMF" "FIG")
  3287.     (help #help_driver)
  3288.   )
  3289. )
  3290.  
  3291. (complete 20)
  3292.  
  3293. (makedir "libs:AMF")
  3294.  
  3295. (if (IN #driver 0)
  3296.   (copylib 
  3297.     (prompt #text_strip)
  3298.     (source (tackon @sourcedir "libs/AMF/amigametaformat-strip.driver"))
  3299.     (dest  "libs:AMF/")
  3300.     (optional "nofail" "force" "askuser")
  3301.     (help #help_strip)
  3302.   )
  3303. )
  3304.  
  3305. (complete 21)
  3306.  
  3307. (if (IN #driver 1)
  3308.   (copylib 
  3309.     (prompt #text_file)
  3310.     (source (tackon @sourcedir "libs/AMF/amigametaformat-file.driver"))
  3311.     (dest  "libs:AMF/")
  3312.     (optional "nofail" "force" "askuser")
  3313.     (help #help_file)
  3314.   )
  3315. )
  3316.  
  3317. (complete 22)
  3318.  
  3319. (if (IN #driver 2)
  3320.   (copylib 
  3321.     (prompt #text_cgm)
  3322.     (source (tackon @sourcedir "libs/AMF/amigametaformat-cgm.driver"))
  3323.     (dest  "libs:AMF/")
  3324.     (optional "nofail" "force" "askuser")
  3325.     (help #help_cgm)
  3326.   )
  3327. )
  3328.  
  3329. (complete 23)
  3330.  
  3331. (if (IN #driver 3)
  3332.   (copylib 
  3333.     (prompt #text_eps)
  3334.     (source (tackon @sourcedir "libs/AMF/amigametaformat-eps.driver"))
  3335.     (dest  "libs:AMF/")
  3336.     (optional "nofail" "force" "askuser")
  3337.     (help #help_eps)
  3338.   )
  3339. )
  3340.  
  3341. (complete 24)
  3342.  
  3343. (if (IN #driver 4)
  3344.   (copylib 
  3345.     (prompt #text_gem)
  3346.     (source (tackon @sourcedir "libs/AMF/amigametaformat-gem.driver"))
  3347.     (dest  "libs:AMF/")
  3348.     (optional "nofail" "force" "askuser")
  3349.     (help #help_gem)
  3350.   )
  3351. )
  3352.  
  3353. (complete 25)
  3354.  
  3355. (if (IN #driver 5)
  3356.   (copylib 
  3357.     (prompt #text_ww)
  3358.     (source (tackon @sourcedir "libs/AMF/amigametaformat-ww.driver"))
  3359.     (dest  "libs:AMF/")
  3360.     (optional "nofail" "force" "askuser")
  3361.     (help #help_ww)
  3362.   )
  3363. )
  3364.  
  3365. (complete 26)
  3366.  
  3367. (if (IN #driver 6)
  3368.   (copylib 
  3369.     (prompt #text_dr2d)
  3370.     (source (tackon @sourcedir "libs/AMF/amigametaformat-dr2d.driver"))
  3371.     (dest  "libs:AMF/")
  3372.     (optional "nofail" "force" "askuser")
  3373.     (help #help_dr2d)
  3374.   )
  3375. )
  3376.  
  3377. (complete 27)
  3378.  
  3379. (if (IN #driver 7)
  3380.   (copylib 
  3381.     (prompt #text_hpgl)
  3382.     (source (tackon @sourcedir "libs/AMF/amigametaformat-hpgl.driver"))
  3383.     (dest  "libs:AMF/")
  3384.     (optional "nofail" "force" "askuser")
  3385.     (help #help_hpgl)
  3386.   )
  3387. )
  3388.  
  3389. (complete 28)
  3390.  
  3391. (if (IN #driver 8)
  3392.   (copylib 
  3393.     (prompt #text_ai)
  3394.     (source (tackon @sourcedir "libs/AMF/amigametaformat-ai.driver"))
  3395.     (dest  "libs:AMF/")
  3396.     (optional "nofail" "force" "askuser")
  3397.     (help #help_ai)
  3398.   )
  3399. )
  3400.  
  3401. (complete 29)
  3402.  
  3403. (if (IN #driver 9)
  3404.   (copylib 
  3405.     (prompt #text_jmf)
  3406.     (source (tackon @sourcedir "libs/AMF/amigametaformat-jmf.driver"))
  3407.     (dest  "libs:AMF/")
  3408.     (optional "nofail" "force" "askuser")
  3409.     (help #help_jmf)
  3410.   )
  3411. )
  3412.  
  3413. (complete 30)
  3414.  
  3415. (if (IN #driver 10)
  3416.   (copylib 
  3417.     (prompt #text_wmf)
  3418.     (source (tackon @sourcedir "libs/AMF/amigametaformat-wmf.driver"))
  3419.     (dest  "libs:AMF/")
  3420.     (optional "nofail" "force" "askuser")
  3421.     (help #help_wmf)
  3422.   )
  3423. )
  3424.  
  3425. (complete 31)
  3426.  
  3427. (if (IN #driver 11)
  3428.   (copylib 
  3429.     (prompt #text_fig)
  3430.     (source (tackon @sourcedir "libs/AMF/amigametaformat-xfig.driver"))
  3431.     (dest  "libs:AMF/")
  3432.     (optional "nofail" "force" "askuser")
  3433.     (help #help_fig)
  3434.   )
  3435. )
  3436.  
  3437. (complete 40)
  3438.  
  3439. (copyfiles
  3440.   (prompt #text_programm)
  3441.   (source (tackon @sourcedir "MetaView"))
  3442.   (dest @default-dest)
  3443.   (infos)
  3444.   (confirm)
  3445.   (help #help_programm)
  3446. )
  3447.  
  3448. (complete 50)
  3449.  
  3450. (copyfiles
  3451.   (prompt #text_doc)
  3452.   (source (tackon @sourcedir "MetaView.doc"))
  3453.   (dest @default-dest)
  3454.   (infos)
  3455.   (confirm)
  3456.   (help #help_doc)
  3457. )
  3458.  
  3459. (complete 60)
  3460.  
  3461. (set #language
  3462.   (askoptions
  3463.     (prompt #text_guide)
  3464.     (choices "pEnglish" "Deutsch" "Español" "Polski" "Ceská" "Catalá")
  3465.     (default (shiftleft 1 #language-number))
  3466.     (help @askoptions-help)
  3467.   )
  3468. )
  3469.  
  3470. (complete 61)
  3471.  
  3472. (if (IN #language 0)
  3473.   (copyfiles
  3474.     (prompt #text_english_guide)
  3475.     (source (tackon @sourcedir "MetaView.guide"))
  3476.     (dest @default-dest)
  3477.     (infos)
  3478.     (help #help_english_guide)
  3479.   )
  3480. )
  3481.  
  3482. (complete 62)
  3483.  
  3484. (if (IN #language 1)
  3485.   (copyfiles
  3486.     (prompt #text_german_guide)
  3487.     (source (tackon @sourcedir "translations/MetaView_deutsch.guide"))
  3488.     (dest @default-dest)
  3489.     (infos)
  3490.     (help #help_german_guide)
  3491.   )
  3492. )
  3493.  
  3494. (complete 63)
  3495.  
  3496. (if (IN #language 2)
  3497.   (copyfiles
  3498.     (prompt #text_spanish_guide)
  3499.     (source (tackon @sourcedir "translations/MetaView_espanol.guide"))
  3500.     (dest @default-dest)
  3501.     (infos)
  3502.     (help #help_spanish_guide)
  3503.   )
  3504. )
  3505.  
  3506. (complete 64)
  3507.  
  3508. (if (IN #language 3)
  3509.   (copyfiles
  3510.     (prompt #text_polish_guide)
  3511.     (source (tackon @sourcedir "translations/MetaView_polski.guide"))
  3512.     (dest @default-dest)
  3513.     (infos)
  3514.     (help #help_polish_guide)
  3515.   )
  3516. )
  3517.  
  3518. (complete 65)
  3519.  
  3520. (if (IN #language 4)
  3521.   (copyfiles
  3522.     (prompt #text_czech_guide)
  3523.     (source (tackon @sourcedir "translations/MetaView_ceska.guide"))
  3524.     (dest @default-dest)
  3525.     (infos)
  3526.     (help #help_czech_guide)
  3527.   )
  3528. )
  3529.  
  3530. (complete 66)
  3531.  
  3532. (if (IN #language 5)
  3533.   (copyfiles
  3534.     (prompt #text_catalan_guide)
  3535.     (source (tackon @sourcedir "translations/MetaView_catalá.guide"))
  3536.     (dest @default-dest)
  3537.     (infos)
  3538.     (help #help_catalan_guide)
  3539.   )
  3540. )
  3541.  
  3542. (complete 67)
  3543.  
  3544. (copyfiles
  3545.   (source (tackon @sourcedir "MetaView_Main.ilbm"))
  3546.   (dest @default-dest)
  3547. )
  3548.  
  3549. (copyfiles
  3550.   (source (tackon @sourcedir "MetaView_Font.ilbm"))
  3551.   (dest @default-dest)
  3552. )
  3553.  
  3554. (complete 68)
  3555.  
  3556. (copyfiles
  3557.   (source (tackon @sourcedir "MetaView_ILBM.ilbm"))
  3558.   (dest @default-dest)
  3559. )
  3560.  
  3561. (copyfiles
  3562.   (source (tackon @sourcedir "MetaView_Print.ilbm"))
  3563.   (dest @default-dest)
  3564. )
  3565.  
  3566. (complete 69)
  3567.  
  3568. (copyfiles
  3569.   (source (tackon @sourcedir "MetaView_Plot.ilbm"))
  3570.   (dest @default-dest)
  3571. )
  3572.  
  3573. (copyfiles
  3574.   (source (tackon @sourcedir "MetaView_PS.ilbm"))
  3575.   (dest @default-dest)
  3576. )
  3577.  
  3578. (copyfiles
  3579.   (source (tackon @sourcedir "MetaView_Settings.ilbm"))
  3580.   (dest @default-dest)
  3581. )
  3582.  
  3583. (complete 70)
  3584.  
  3585. (copyfiles
  3586.   (prompt #text_readme)
  3587.   (source (tackon @sourcedir "libs/amigametaformat.readme"))
  3588.   (dest @default-dest)
  3589.   (infos)
  3590.   (confirm)
  3591.   (help #help_readme)
  3592. )
  3593.  
  3594. (copyfiles
  3595.   (source (tackon @sourcedir "gadgets"))
  3596.   (dest (tackon @default-dest "gadgets"))
  3597.   (files)
  3598.   (all)
  3599.   (infos)
  3600. )
  3601.  
  3602. (complete 80)
  3603.  
  3604. (copyfiles
  3605.   (prompt #text_arexx)
  3606.   (source (tackon @sourcedir "ARexx-Examples"))
  3607.   (dest (tackon @default-dest "ARexx-Examples"))
  3608.   (files)
  3609.   (all)
  3610.   (infos)
  3611.   (confirm)
  3612.   (help #help_arexx)
  3613. )
  3614.  
  3615. (user 2)
  3616. (if (= 1 (askbool
  3617.             (prompt #text_ds)
  3618.             (choices #YES #NO)
  3619.             (help #help_ds)
  3620.          )
  3621.     )
  3622.     (
  3623.        (set #dspath
  3624.           (askdir
  3625.             (prompt #text_ds_path)
  3626.             (help #help_ds_path)
  3627.             (default "Rexx:")
  3628.             (disk)
  3629.           )
  3630.        )
  3631.        (copyfiles
  3632.          (prompt #text_ds_import)
  3633.          (source (tackon @sourcedir "ARexx-Examples/DrawStudio_Import.dsrx"))
  3634.          (dest #dspath)
  3635.        )
  3636.        (copyfiles
  3637.          (prompt #text_ds_export)
  3638.          (source (tackon @sourcedir "ARexx-Examples/DrawStudio_Export.dsrx"))
  3639.          (dest #dspath)
  3640.        )
  3641.     )
  3642. )
  3643.  
  3644. (if (= 1 (askbool
  3645.             (prompt #text_pgs)
  3646.             (choices #YES #NO)
  3647.             (help #help_pgs)
  3648.          )
  3649.     )
  3650.     (
  3651.        (set #pspath
  3652.           (askdir
  3653.             (prompt #text_pgs_path)
  3654.             (help #help_pgs_path)
  3655.             (default "Rexx:")
  3656.             (disk)
  3657.           )
  3658.        )
  3659.        (copyfiles
  3660.          (prompt #text_pgs_import)
  3661.          (source (tackon @sourcedir "ARexx-Examples/PageStream_Import.rexx"))
  3662.          (dest #pspath)
  3663.        )
  3664.     )
  3665. )
  3666.  
  3667. (if (= 1 (askbool
  3668.             (prompt #text_ww)
  3669.             (choices #YES #NO)
  3670.             (help #help_ww)
  3671.          )
  3672.     )
  3673.     (
  3674.        (set #wwpath
  3675.           (askdir
  3676.             (prompt #text_ww_path)
  3677.             (help #help_ww_path)
  3678.             (default "Rexx:")
  3679.             (disk)
  3680.           )
  3681.        )
  3682.        (copyfiles
  3683.          (prompt #text_ww_import)
  3684.          (source (tackon @sourcedir "ARexx-Examples/WordWorth_Import_gfx.rexx"))
  3685.          (dest #wwpath)
  3686.        )
  3687.     )
  3688. )
  3689.  
  3690. (if (= 1 (askbool
  3691.             (prompt #text_fw)
  3692.             (choices #YES #NO)
  3693.             (help #help_fw)
  3694.          )
  3695.     )
  3696.     (
  3697.        (set #fwpath
  3698.           (askdir
  3699.             (prompt #text_fw_path)
  3700.             (help #help_fw_path)
  3701.             (default "Rexx:")
  3702.             (disk)
  3703.           )
  3704.        )
  3705.        (copyfiles
  3706.          (prompt #text_fw_import)
  3707.          (source (tackon @sourcedir "ARexx-Examples/FinalWriter_Import.rexx"))
  3708.          (dest #fwpath)
  3709.        )
  3710.     )
  3711. )
  3712. (user #user-level)
  3713.  
  3714.  
  3715. (if (= 1 (askbool
  3716.             (prompt #text_examples)
  3717.             (choices #text_copy #text_skip)
  3718.             (help @askbool-help)
  3719.             (default 1)
  3720.          )
  3721.     )
  3722.     (copyfiles
  3723.       (prompt #text_examples_copy)
  3724.       (source (tackon @sourcedir "Examples"))
  3725.       (dest (tackon @default-dest "Examples"))
  3726.       (files)
  3727.       (all)
  3728.       (infos)
  3729.       (help #help_examples_copy)
  3730.     )
  3731. )
  3732.  
  3733. (complete 85)
  3734.  
  3735. (set #osvernum (getversion))
  3736. (set #osver (/ #osvernum 65536))
  3737. (set #osrev (- #osvernum (* #osver 65536) ) )
  3738. (set #oldpatchvernum (getversion "c:SetPatch"))
  3739. (set #newpatchvernum (getversion (tackon @sourcedir "SetPatch43_6/SetPatch")))
  3740.  
  3741. (if (AND (> #osver 39) (< #oldpatchvernum #newpatchvernum))
  3742.   (if (= 1 (askbool
  3743.               (prompt #text_setpatch)
  3744.               (choices #text_copy #text_skip)
  3745.               (help #help_setpatch)
  3746.               (default 1)
  3747.            )
  3748.       )
  3749.       (
  3750.         (rename "c:SetPatch" "c:SetPatch.old")
  3751.         (copylib
  3752.           (prompt #text_setpatch_copy)
  3753.           (source (tackon @sourcedir "SetPatch43_6/SetPatch"))
  3754.           (dest  "c:")
  3755.           (optional "nofail" "force" "askuser")
  3756.           (help @copylib-help)
  3757.         )
  3758.       )
  3759.   )
  3760. )
  3761.  
  3762. (if (> #osver 38)
  3763.   (copylib
  3764.      (prompt #text_tabs_copy)
  3765.      (source (tackon @sourcedir "libs/gadgets/tabs.gadget"))
  3766.      (dest  "libs:gadgets/")
  3767.      (optional "nofail" "force" "askuser")
  3768.      (help @copylib-help)
  3769.   )
  3770. )
  3771.  
  3772. (complete 90)
  3773.  
  3774. (if (= 1 (exists ("envarc:MetaView.path")))
  3775.   (if (= 1 (askbool
  3776.               (prompt #text_variable)
  3777.               (choices #text_update #text_skip)
  3778.               (help #help_variable)
  3779.               (default 1)
  3780.            )
  3781.       )
  3782.     (
  3783.       (textfile
  3784.         (prompt #text_envarc)
  3785.         (dest "envarc:MetaView.path")
  3786.         (append (tackon @default-dest "Metaview"))
  3787.         (confirm)
  3788.         (help #help_envarc)
  3789.       )
  3790.       (textfile
  3791.         (prompt #text_env)
  3792.         (dest "env:MetaView.path")
  3793.         (append (tackon @default-dest "Metaview"))
  3794.         (confirm)
  3795.         (help #help_env)
  3796.       )
  3797.     )
  3798.   )
  3799. )
  3800.  
  3801. (complete 95)
  3802.  
  3803. (user 2)
  3804. (if (= 1 (exists (tackon @sourcedir "keyfile.metaview")))
  3805.     (copyfiles
  3806.       (prompt #text_keyfile)
  3807.       (source (tackon @sourcedir "keyfile.metaview"))
  3808.       (dest @default-dest)
  3809.       (infos)
  3810.       (help #help_keyfile)
  3811.     )
  3812. )
  3813. (if (= 0 (exists (tackon @default-dest "keyfile.metaview")))
  3814.     (message #text_register
  3815.        (help #help_register)
  3816.     )
  3817. )
  3818. (if (= 1 (exists (tackon @default-dest "keyfile.metaview")))
  3819.     (message
  3820.        #text_thanx
  3821.     )
  3822. )
  3823.  
  3824. (complete 100)
  3825.  
  3826.